Home > Software design >  flutter launcher icon didn't work for me i already follow all the instructions
flutter launcher icon didn't work for me i already follow all the instructions

Time:04-09

what is it mean? is it successful ?

flutter_launcher_icon didn't work with me, already follow all the instructions and the icon still not change

CodePudding user response:

please try below steps

Add flutter_launcher_icons: ^0.7.3 code Plugin to pubspec.yaml in pubspec.yaml :

flutter_icons: image_path_android: "images/logoapp.png" image_path_ios: "images/logoapp.png" android: true ios: true

run command : flutter pub get

run command : flutter pub pub run flutter_launcher_icons:main

run command : flutter clean

run command : flutter run

CodePudding user response:

No need of any plugins go to https://appicon.co then add your app icon there and download the zip file which will contain app icon for both android and iOS and replace the following in your project with the downloaded one, 1.In Android go to android->app->src->main->res and replace android icons here 2.In IOS go to iOS->Runner->Assets.xcassets then replace the folder "AppIcon.appiconset" with the downloaded one Thats it, once restart the project an run your app icon will be updated

  • Related