App Icons, Logo & Splash Screen
App Icon
To change the app icon of your app you just just replace icon.png
file in assets/icons/icon.png
. Make sure you follow the design guidelines, for reference you can see the our icon. Make sure the app icon size is 1080x1080
.
If you wish to customise more, open pubspec.yaml
file and change as needed
flutter_launcher_icons: android: "launcher_icon" ios: true remove_alpha_ios: true # Don't remove or change this if you are generating iOS icon as well image_path: "assets/icons/icon.png" min_sdk_android: 21 adaptive_icon_background: "#ffffff" adaptive_icon_foreground: "assets/icons/icon.png"
After it’s done run the command to generate the assets
flutter pub run flutter_launcher_icons
Splash Screen
It’s same as app icon, you just have to replace a single file in the pubspec.yaml
. Just replace assets/images/logo.png
and edit as needed in the pubspec.yaml
flutter_native_splash: color: "#ffffff" image: assets/images/logo.png
As same as app icon when it’s done run the command to generate the splash screen
flutter pub run flutter_native_splash:create