Flutterでテキストを表示する
最終更新日:2023-10-03
    
    Text は、単一のスタイルで文字列を表示します。テキストを表示するときに使用しましょう。
Text(
  'Hello, $_name ',
  style: const TextStyle(fontWeight: FontWeight.bold),
)
テキストのスタイルは TextStyle()内に記述します。


最終更新日:2023-10-03
    
    Text は、単一のスタイルで文字列を表示します。テキストを表示するときに使用しましょう。
Text(
  'Hello, $_name ',
  style: const TextStyle(fontWeight: FontWeight.bold),
)
テキストのスタイルは TextStyle()内に記述します。