Yellow lines under Text Widgets in Flutter?

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

    You just need to add Material root widget.

          @override
           Widget build(BuildContext context) {
          return Material(
             child: new Container(),
            );
           }
    

提交回复
热议问题