どうも、ちょげ(@chogetarou)です。
Textで表示するテキストに取り消し線を表示する方法を紹介します。
方法

Textのテキストに取り消し線をつけるには、引数「style」を使います。
まず、Textの引数「style」にTextStyleを指定します。
そして、TextStyleの引数「decoration」に「TextDecoration.lineThrough」を指定します。
Text(
'Hello Flutter',
style: TextStyle(
decoration: TextDecoration.lineThrough,
),
),

引数「style」を使えば、Textのテキストに取り消し線をつけることが出来ます。
コメント