コンテンツにスキップ

flutter アプリアイコンを設定#

iOSは透明度のあるアイコンを使えない(ストアアップロード時にエラーになる)

アイコンのpngファイルを任意の場所に設定

flutter pub add --dev flutter_launcher_iconsを実行

pubspec.ymlに以下を追記

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

flutter pub pub run flutter_launcher_icons:mainを実行


References#

Tags#

  • #flutter