[Flutter]Text(テキスト)の下線を破線にするには?

Flutter

どうも、ちょげ(@chogetarou)です。

Textの下線を破線にする方法を紹介します。

スポンサーリンク

方法

インターフェース, インターネット, プログラム, ブラウザ, Www

Textの下線を破線にするには、TextStyleの引数「decorationStyle」を使います。

具体的には、TextStyleの引数「decorationStyle」に「TextDecoration.dashed」を指定します。

Text(
  'Hello Flutter',
  style: TextStyle(
    decoration: TextDecoration.underline,
    decorationStyle: TextDecorationStyle.dashed,
  ),
),

TextStyleの引数「decorationStyle」を使えば、Textの下線を破線にすることが出来ます。

コメント

タイトルとURLをコピーしました