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
You just need to add Material root widget.
@override Widget build(BuildContext context) { return Material( child: new Container(), ); }