Flutter Launcher icon not getting changed?

后端 未结 7 2043
星月不相逢
星月不相逢 2021-02-13 04:35

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

7条回答
  •  执念已碎
    2021-02-13 05:14

    First add flutter_launcher_icons: ^0.8.1 code Plugin to pubspec.yaml

    in pubspec.yaml file:

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

    2. check iOS -Folder -> Runner -> Assets.xcassets -> AppIcon.appiconset: if duplicates exist delete them.

    run commands : flutter pub get run commands : flutter pub pub run flutter_launcher_icons:main run commands : flutter clean run commands : flutter run

    This worked for me.

提交回复
热议问题