0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

@gi-ra-ffeAdvent Calendar 2023

Day 17

【Flutter】アイコンについて

Last updated at Posted at 2023-12-19

cupertino_iconsについては軽く調べたことあり。
他にも気になったので備忘録。

組み込みのアイコン

Icon(Icons.star);  // Material Designのアイコン
Icon(CupertinoIcons.star);  // Cupertinoのアイコン (iOS用)

アイコンの色を変える

Icon(Icons.star, color: Colors.yellow,),

カスタムアイコン

自分で作成したSVGデータもアイコンとして使用できる。

上記サイトでttfデータに変換し、プロジェクトに設置することでカスタムアイコンの使用が可能。

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?