どうも、ちょげ(@chogetarou)です。
Textの装飾をする方法を紹介します。
方法

Textの装飾をするには、引数「style」を使います。
まず、Text の引数「style」にTextStyleを指定します。
そして、TextStyleの引数でTextの装飾を設定します。
Text(
'Hello Flutte',
style: TextStyle(/*装飾*/),
),
引数「style」を使えば、Textの装飾をすることが出来ます。
使用例
以下は、使用例です。

Text(
'Hello Flutte',
style: TextStyle(
color: Colors.white, //色
backgroundColor: Colors.blue, //背景色
fontSize: 24, //サイズ
),
),
コメント