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
There is an other solution for this , especially if you are using multiple pages wrapped under main.dart file You can do something like this:
child: MaterialApp(
home: Material(child: Wrapper()),
),
This will remove the yellow lines under text that is present in any pages referenced/used under wrapper.