🖼️

【Flutter】 アプリアイコンの変更

2022/01/17に公開
1

使用したライブラリ

https://pub.dev/packages/flutter_launcher_icons

参考にしたサイト

https://zenn.dev/susatthi/articles/20220401-060335-flutter-launcher-icons

手順

1.pubspec.yamlで下記を追加しpubget

pubspec.yaml
flutter_launcher_icons: ^0.9.2

2.pubspec.yamlでアイコンのパスを指定する

pubspec.yaml
dev_dependencies:
  flutter_test:
    sdk: flutter
  
flutter_icons:
  android: true
  ios: true
  image_path: 'assets/images/icon.png' # 512x512
  adaptive_icon_foreground: 'assets/images/foreground_icon.png' # 背景透過し約50%縮小した画像
  adaptive_icon_background: '#ffffff' # 背景色

3.下記Terminalで実行し、アプリをリビルド
  アイコンが変わっていることを確認

$ flutter pub get
$ flutter pub pub run flutter_launcher_icons:main

Discussion

keitokeito

androidで同じ問題に出くわしていたので大変助かりました。
ありがとうございます。