Working on my first flutter app. The main app screen doesn\'t have this issue, all the texts show up as they should.
However in this new screen I\'m developing, all
You can either use Scaffold (generally better) or any other component that provides material theme like a simple Material widget.
Here is the example, use any of them:
var text = Scaffold(body: Text("Hi"),);
var text2 = Material(child: Text("Hi"),);
As a workaround you can use:
Text(
'Your text',
style: TextStyle(decoration: TextDecoration.none), // removes yellow line
)