Yellow lines under Text Widgets in Flutter?

前端 未结 11 1666
没有蜡笔的小新
没有蜡笔的小新 2020-12-04 20:52

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

11条回答
  •  [愿得一人]
    2020-12-04 20:59

    Inside your Text Widget, use the style property and set decoration to null like shown:

    Text( 
       "hello world",
       style: TextStyle(
           decoration: TextDecoration.none
       ),
    )
    

    This will remove the yellow lines under the text.

提交回复
热议问题