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
Inside your Text Widget, use the style property and set decoration to null like shown:
Text Widget
style
decoration
null
Text( "hello world", style: TextStyle( decoration: TextDecoration.none ), )
This will remove the yellow lines under the text.