どうも、ちょげ(@chogetarou)です。
Textの下線を2重線にする方法を紹介します。
方法

Textの下線を2重線にするには、TextStyleの引数「decorationStyle」を使います。
具体的には、TextStyleの引数「decorationStyle」に「TextDecoration.double」を指定します。
Text(
'Hello Flutter',
style: TextStyle(
decoration: TextDecoration.underline,
decorationStyle: TextDecorationStyle.double,
),
),

TextStyleの引数「decorationStyle」を使えば、Textの下線を2重線にすることが出来ます。
コメント