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?

【Flutter】アプリアイコンを変更する

Posted at

はじめに

ホームに表示されるアプリアイコンを「flutter_launcher_icons」を使用して変更します。

パッケージ追加

以下のコマンドでパッケージを追加します。

flutter pub add flutter_launcher_icons

アプリアイコンの画像追加

アプリアイコン用の画像をassets配下に追加します。

※ 場所は任意

※ スプラッシュ画面で表示させたときの画像を使用しています

/qiita_memo/assets/images/app_icon/app_icon.png

アイコンの設定を追加

pubspec.yamlにアイコンの設定を追加します。

# アプリアイコン
flutter_launcher_icons:       
  android: true
  ios: true
  remove_alpha_ios: true # アイコンの白色箇所を削除するのに必要
  image_path: assets/images/app_icon/app_icon.png # アプリアイコンに使用する画像

アプリアイコンの生成

以下のコマンドでアプリアイコンを生成します。

flutter pub run flutter_launcher_icons:main

アプリアイコン確認

flutter runなどでアプリを起動して、ホーム画面のアプリアイコンを確認すると反映されていました。

スクリーンショット 2025-04-27 4.16.41.png

終わりに

アプリアイコンをデフォルトから変更しました。
パッケージを使うと簡単に変更することができました。

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?