Home > Software design >  How to set custom image icon on Flutter App? Using Appicon
How to set custom image icon on Flutter App? Using Appicon

Time:04-03

I Tried changing my app's Icon on apk but it's not changing. I generated an icon on https://appicon.co/ and try changing but it's showing flutter's default app icon.

CodePudding user response:

Try this flutter_launcher_icons

In pubsec.yaml

 dev_dependencies:
  flutter_launcher_icons: "^0.9.2"

flutter_icons:
  android: "launcher_icon"
  ios: true
  image_path: "assets/icon/icon.png"

And then run this on your terminal

flutter pub run flutter_launcher_icons:main
  • Related