Yellow lines under Text Widgets in Flutter?

前端 未结 11 1672
没有蜡笔的小新
没有蜡笔的小新 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 21:12

    Text style has a decoration argument that can be set to none

    Text("My Text",
      style: TextStyle(
        decoration: TextDecoration.none,
      )
    );
    

    Also, as others have mentioned, if your Text widget is in the tree of a Scaffold or Material widget you won't need the decoration text style.

提交回复
热议问题