Flutter Launcher icon not getting changed?

后端 未结 7 2041
星月不相逢
星月不相逢 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:29

    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 commands : flutter pub get

    4. run commands : flutter pub pub run flutter_launcher_icons:main
    5. run commands : flutter clean
    6. run commands : flutter run it worked for me

提交回复
热议问题