Yellow lines under Text Widgets in Flutter?

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

    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
    )
    

提交回复
热议问题