Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter Launcher icon not getting changed?

Tags:

Am new to Flutter. I gone through the flutter documentation and followed the steps to configure custom launcher icons for my flutter project but app Launcher icon is not getting changed? Not sure what am missing.

enter image description here

Code:

dev_dependencies:
  flutter_test:
    sdk: flutter  
  flutter_launcher_icons: "^0.7.0"

flutter_icons:
  image_path: "icon/icon.png"
  android: true 
  ios: true
like image 805
Nithyanandan Sathiyanathan Avatar asked Dec 29 '18 07:12

Nithyanandan Sathiyanathan


1 Answers

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

 $ flutter pub pub run flutter_launcher_icons:main
like image 113
Viren V Varasadiya Avatar answered Sep 20 '22 09:09

Viren V Varasadiya