How to underline text in flutter inside Text widget?
Text
I cannot seem to find underline inside fontStyle property of TextStyle
fontStyle
TextStyle
You can use TextDecoration in style to underline a given text.
For example
Text( "Your text here", style: TextStyle( decoration: TextDecoration.underline), ) )