Flutter Launcher icon not getting changed? Flutter Launcher icon not getting changed? dart dart

Flutter Launcher icon not getting changed?


you have to get the package and then after run following command to change the icon.

 $ flutter pub pub run flutter_launcher_icons:main


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

  2. in pubspec.yaml :

    flutter_icons:  image_path_android: "images/logoapp.png"  image_path_ios: "images/logoapp.png"  android: true  ios: true 
  3. run command : flutter pub get

  4. run command : flutter pub pub run flutter_launcher_icons:main

  5. run command : flutter clean

  6. run command : flutter run

it worked for me


Able to change Now after following below Steps.

  1. Add flutter_launcher_icons code Plugin to pubspec.yaml as mentioned in question
  2. In Command prompt run below commands
    • flutter pub get
    • flutter pub pub run flutter_launcher_icons:main
  3. And it worked
  4. Launcher Icons I generated using external website https://romannurik.github.io/AndroidAssetStudio/icons-launcher.html