Underline Text In Flutter

[Solved] Underline Text In Flutter | Dart - Code Explorer | yomemimo.com
Question : underline text in flutter

Answered by : agreeable-alpaca-yago975jwhar

Text( 'Hello world', style: TextStyle( decoration: TextDecoration.underline, ),
)

Source : https://stackoverflow.com/questions/50614661/how-to-underline-text-in-flutter | Last Update : Sun, 12 Jul 20

Question : text underline flutter

Answered by : shiny-stoat-nnsz4tbwagco

Text( 'Hello world', style: TextStyle( decoration: TextDecoration.underline, ),
)

Source : https://stackoverflow.com/questions/50614661/how-to-underline-text-in-flutter | Last Update : Mon, 15 Mar 21

Question : Add Underline Text in Flutter

Answered by : prashant-rawal

Widget build(BuildContext context) return Scaffold( appBar: AppBar( title: const Text("Text Underline"), ), body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.spaceAround, children: const [ Text("Hello World"), Text( "Hello World", style: TextStyle( decoration: TextDecoration.underline, ), ), Text.rich( TextSpan( text: 'Hello ', style: TextStyle(fontSize: 50), children: <textspan>[ TextSpan( text: 'world', style: TextStyle( decoration: TextDecoration.underline, )), ], ), ), Text( 'Hello world', style: TextStyle( decoration: TextDecoration.underline, decorationStyle: TextDecorationStyle.dashed, ), ), Text( 'Hello world', style: TextStyle( decoration: TextDecoration.underline, decorationStyle: TextDecorationStyle.dotted, ), ), Text( 'Hello world', style: TextStyle( decoration: TextDecoration.underline, decorationStyle: TextDecorationStyle.double, ), ), Text( 'Hello world', style: TextStyle( decoration: TextDecoration.underline, decorationStyle: TextDecorationStyle.wavy, ), ), ], ), ), ); }

Source : https://www.linkedin.com/pulse/how-add-underline-text-flutter-pankaj-das/ | Last Update : Mon, 27 Jun 22

Answers related to underline text in flutter

Code Explorer Popular Question For Dart