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
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.