Flutter Textのテキストに下線をつけるサンプル
環境
Windows11 pro 64bit
Flutter 3.3.7
構文
decoration: TextDecoration.underline,
TextStyleの引数「decoration」に「TextDecoration.underline」を指定します。
Textのテキストに下線をつけます。
使用例
Text( 'Study Skill Flutter', style: TextStyle( decoration: TextDecoration.underline, ), ),