如何在 Flutter App 上设置自定义图片图标?使用应用图标
How to set custom image icon on Flutter App? Using Appicon
我试过在 apk 上更改我的应用程序的图标,但它没有改变。我在 https://appicon.co/ 上生成了一个图标并尝试更改,但它显示的是 flutter 的默认应用程序图标。
在pubsec.yaml
dev_dependencies:
flutter_launcher_icons: "^0.9.2"
flutter_icons:
android: "launcher_icon"
ios: true
image_path: "assets/icon/icon.png"
然后 运行 在您的终端上
flutter pub run flutter_launcher_icons:main
我试过在 apk 上更改我的应用程序的图标,但它没有改变。我在 https://appicon.co/ 上生成了一个图标并尝试更改,但它显示的是 flutter 的默认应用程序图标。
在pubsec.yaml
dev_dependencies:
flutter_launcher_icons: "^0.9.2"
flutter_icons:
android: "launcher_icon"
ios: true
image_path: "assets/icon/icon.png"
然后 运行 在您的终端上
flutter pub run flutter_launcher_icons:main