Changing App Icon
Last updated
Last updated
Changing the app icon is a crucial step in the branding of your Flutter application, as it represents your app on users' devices and in app stores. A well-designed icon can significantly impact first impressions and enhance your app's visibility. In Flutter, updating the app icon involves replacing the default icon files for both Android and iOS platforms.
To change the App icon and logo you need to, replace your logo with logo.png
inside assets/images/
folder this will change the logo used inside the application, However to change the App icon you need to generate an icon set for Android and IOS.
In this guide, we will walk you through the process of changing your Flutter app icon using the online tool AppIcon.co. This user-friendly service allows you to easily generate app icons in various sizes required for different platforms. By following our steps, you'll be able to create a customised app icon quickly and implement it into your Flutter project, ensuring your app stands out in the marketplace.
Open App Icon Generator web app drag and drop your app icon and click on generate.
Check iPhone, iPad and Android and click Generate button.
It will download a .zip file containing your icon set. Extract the zip file and replace AppIcon.appiconset
folder with ios/Runner/Assets.xcassets/AppIcon.appiconset
folder and replace folders under android
folder with folders inside android/app/src/main/res
After following these setup steps, make sure to rerun the application for the changes to take effect.