facebook twitter hatena line email

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

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「以下デフォでonになっているが確認 *pubspec.yaml flutter: uses-material-design: true 参考:https://docs.flutter.io/flutter/material/Icons-class.html」)
 
(準備)
 
(同じ利用者による、間の2版が非表示)
行1: 行1:
 +
==準備==
 
以下デフォでonになっているが確認
 
以下デフォでonになっているが確認
 
*pubspec.yaml
 
*pubspec.yaml
 
  flutter:
 
  flutter:
 
   uses-material-design: true
 
   uses-material-design: true
 +
 +
dependencies側のflutterではないので注意。
 +
 +
==サンプル==
 +
<pre>
 +
Icon(
 +
  Icons.add,
 +
  color: Colors.pink,
 +
  size: 30.0,
 +
)
 +
</pre>
 +
 +
アイコン画像一覧:https://material.io/tools/icons/?style=baseline
  
 
参考:https://docs.flutter.io/flutter/material/Icons-class.html
 
参考:https://docs.flutter.io/flutter/material/Icons-class.html

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