第一种:在线生成Icon的网站
第二种:
全自动化生成Icons插件
flutter_launcher_icons
使用姿势:
首先准备一张分辨率为1024x1024的png图片,放入assets/icon,名称为icon.png
之后在pubspec.yaml中添加
dev_dependencies:
flutter_test:
sdk: flutter
flutter_launcher_icons:
flutter_icons:
image_path_android: "assets/icon/icon.pngg"
image_path_ios: "assets/icon/icon.png"
android: true
ios: true
网友评论