Flutterにおけるアプリアイコンの変更方法
https://pub.dartlang.org/packages/flutter_launcher_icons
このライブラリを使うとぱぱっと変更できます。
pubspec.yml
dev_dependencies:
flutter_test:
sdk: flutter
flutter_launcher_icons: any
とりあえずFlutterプロジェクトのpubspec.ymlにflutter_launcher_iconsを追加します。
$ flutter packages get
それから、同じくpubspec.ymlにアイコンのパスと、それぞれのOSでアプリアイコン指定のものに変更するかを定義します。
pubspec.yml
flutter_icons:
android: true
ios: true
image_path: "assets/icon/icon.png"
アイコンを作り、指定したパスに配置し、最後の仕上げで以下のコマンドでアプリアイコンを生成します。
$ flutter pub pub run flutter_launcher_icons:main
まとめ
めっちゃ楽