「Flutter/アプリアイコン変更」の版間の差分
提供: 初心者エンジニアの簡易メモ
細 (Admin がページ「Flutter/アイコン変更」を「Flutter/アプリアイコン変更」に、リダイレクトを残さずに移動しました) |
|||
行1: | 行1: | ||
+ | ==アプリのアイコンを変更== | ||
pubspec.yml | pubspec.yml | ||
行7: | 行8: | ||
flutter_launcher_icons: any | flutter_launcher_icons: any | ||
</pre> | </pre> | ||
+ | |||
+ | flutter packages get | ||
+ | |||
+ | ==アイコン画像を設定== | ||
+ | pubspec.yml | ||
+ | flutter_icons: | ||
+ | android: true | ||
+ | ios: true | ||
+ | image_path: "assets/icon/icon_512x512.png" | ||
+ | |||
+ | ==アプリのアイコンを変更適応== | ||
+ | flutter pub pub run flutter_launcher_icons:main | ||
==参考== | ==参考== | ||
https://qiita.com/k-nasa/items/33426af4d396b581c101 | https://qiita.com/k-nasa/items/33426af4d396b581c101 |
2019年5月23日 (木) 23:52時点における版
アプリのアイコンを変更
pubspec.yml
dev_dependencies: flutter_test: sdk: flutter flutter_launcher_icons: any
flutter packages get
アイコン画像を設定
pubspec.yml
flutter_icons: android: true ios: true image_path: "assets/icon/icon_512x512.png"
アプリのアイコンを変更適応
flutter pub pub run flutter_launcher_icons:main