iOS Icon Generation
Use flutter_launcher_icons to generate all required iOS icon resolutions.
Steps
-
Replace the template icon at
assets/images/app_icon.pngwith your square icon (minimum1024x1024px recommended, no transparency). -
Verify
pubspec.yamlconfiguration at the bottom:
flutter_launcher_icons:
android: false
ios: true
remove_alpha_ios: true
image_path: "assets/images/app_icon.png"
- Run the generation command:
flutter pub get
flutter pub run flutter_launcher_icons
This writes the iOS icon set into ios/Runner/Assets.xcassets/AppIcon.appiconset/. Rebuild in Xcode to verify.
Notes
- Keep
android: falsehere — Android icons are created via Asset Studio in Android Adaptive Icons. remove_alpha_ios: trueis required for App Store submission (no alpha channel).
Still stuck?
Our support team is ready to help you get set up.

