facebook twitter hatena line email

「Flutter/アイコン追加」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(準備)
 
行4: 行4:
 
  flutter:
 
  flutter:
 
   uses-material-design: true
 
   uses-material-design: true
 +
 +
dependencies側のflutterではないので注意。
  
 
==サンプル==
 
==サンプル==

2019年12月18日 (水) 16:33時点における最新版

準備

以下デフォでonになっているが確認

  • pubspec.yaml
flutter:
 uses-material-design: true

dependencies側のflutterではないので注意。

サンプル

Icon(
  Icons.add,
  color: Colors.pink,
  size: 30.0,
)

アイコン画像一覧:https://material.io/tools/icons/?style=baseline

参考:https://docs.flutter.io/flutter/material/Icons-class.html