Flutterの質問

アプリのアイコンを変更したい

質問日時

2021年07月01日

a-sato

Flutterで作成したアプリのアイコンを変更したいです。
デフォルトではFlutterのロゴが表示されているのですが、どこから変更できますか?

環境
Flutter 2.2.2
Android Studio 4.2.1

ベストアンサー

2021年07月01日

d-ok

flutter_launcher_iconsを使用して変更することができます。

pubspec.yamlに追記します。画像ファイルはassets\iconフォルダを作成し、その中に配置してください。

dev_dependencies:
  flutter_launcher_icons: ^0.9.0

flutter_icons:
  android: true
  ios: true
  image_path: "assets/icon/icon.png"

設定が完了したら、ターミナルで以下を実行します。

flutter pub get
flutter pub run flutter_launcher_icons:main

アプリをインストールすると、アイコンがimage_pathで指定した画像に変更されているのが確認できるはずです。

質問に回答する

1件の回答

ベストアンサー

2021年07月01日

d-ok

flutter_launcher_iconsを使用して変更することができます。

pubspec.yamlに追記します。画像ファイルはassets\iconフォルダを作成し、その中に配置してください。

dev_dependencies:
  flutter_launcher_icons: ^0.9.0

flutter_icons:
  android: true
  ios: true
  image_path: "assets/icon/icon.png"

設定が完了したら、ターミナルで以下を実行します。

flutter pub get
flutter pub run flutter_launcher_icons:main

アプリをインストールすると、アイコンがimage_pathで指定した画像に変更されているのが確認できるはずです。

関連した質問

soichiro1210 が11ヶ月前に投稿

質問日時 2023年07月31日

a-sato が3年前に投稿

質問日時 2021年06月30日

takumi が3年前に投稿

質問日時 2021年05月20日

a-sato が3年前に投稿

質問日時 2021年05月14日

takumi が3年前に投稿

質問日時 2021年05月14日

Flutterの質問一覧を見る

Flutterの記事

Flutterの記事一覧を見る
search