
This site generates different sized Icons for both android and IOS at the same time. Let’s run our application on a device or emulator. Go to and upload the icon image and tick the iPhone and Android options and click on Generate. Overwriting default iOS launcher icon with new icon Overwriting the default Android launcher icon with a new icon If everything worked correctly, we should see the following result: Android minSdkVersion = 16 Inside of your terminal, run the following build script: $ flutter pub run flutter_launcher_icons:main With this in mind, let’s go ahead and generate the icons! Run the Build Script Developers still want to maintain support for the older phones with lower resoltion so when you create an app icon you need to create several size variations of the. As newer phones are released with higher resolution screens, higher resolution app icons are needed. Here’s how: flutter_icons : image_path_ios : 'assets/images/heal.png' image_path_android : 'assets/images/heal.png' android : true ios : true App Icons are the images you press on your smartphone to launch an application. We can also configure this deeper by providing an image_path per platform if we wanted to have a separate icon. This will generate application icons for Android and iOS using the one specified. Then, inside of pubspec.yaml, we’ll need to provide the flutter_icons configuration option: flutter_icons : image_path : 'assets/images/icon.png' android : true ios : true there is a free app in the Mac App Store called Icon Set Creator.
Flutter app icon generator how to#
Place your icon inside of your assets/images/icon.png folder, or a similar folder of your choosing. How to set the app launcher icons in a Flutter project as a native Android and iOS.
Flutter app icon generator install#
Well build a simple random number generator app that you can install on your.

Here’s one that we can use, imagine it’s a camera application: Learn how to use Flutter Launcher Icons to change your Flutter App Icon on. Fully flexible, allowing you to choose what platform you wish to. Now that we’ve got a Flutter project, we’ll need a logo to set as an icon. A command-line tool which simplifies the task of updating your Flutter apps launcher icon. We can then ensure we have the latest packages in our project by running: $ flutter pub get

Head over to your pubspec.yaml and add the following plugin to our dev_dependencies: dev_dependencies : flutter_launcher_icons : ^0.7.4 Creating a new Flutter projectĪs always, we’ll start off by setting up a new project and adding the plugin: # New Flutter project To see how this works yourself, boot up your current Flutter project or follow along with the demonstration below. I initially went ahead and set my icons with Xcode and Android Studio, but after finding the flutter_launcher_icons plugin - I’ll never need to do this manually again! I’ve been working on a Flutter application for the better half of this year, and as we get closer to release, I realized I hadn’t set an app icon yet.
