Update your flutter app icons with a custom one
1. Prepare Your Icon Image
- Create a square PNG image (preferably 1024x1024 pixels) for best quality
2. Use the flutter_launcher_icons Package
Add the package to your pubspec.yaml:
flutter pub add flutter_launcher_icons
3. Configure the Icons
Add this configuration to your pubspec.yaml file:
flutter_launcher_icons:
android: true
ios: true
remove_alpha_ios: true
image_path: "assets/icon/app_icon.png" # Path to your icon image
adaptive_icon_background: "#FFFFFF" # For Android adaptive icons (optional)
4. Run the Package
Run this command in your terminal:
flutter pub get
dart run flutter_launcher_icons
done!