Change the app icon in flutter.
This is second new assignment to change the app icon in flutter.
use "flutter_launcher_icons" in command tool.
in pubspec.yaml
add the following line:
dev_dependencies:
flutter_test:
sdk: flutter
flutter_launcher_icons 0.7.4
flutter_icons:
image_path: "icon/icon.png"
android: true
ios: true
push your icon on specific path
then run on command:
$ flutter pub get
$ flutter pub pub run flutter_launcher_icons:main
the file list will shown after the command execution.
Flutter launcher icons link: https://pub.dev/packages/flutter_launcher_icons
use "flutter_launcher_icons" in command tool.
in pubspec.yaml
add the following line:
dev_dependencies:
flutter_test:
sdk: flutter
flutter_launcher_icons 0.7.4
flutter_icons:
image_path: "icon/icon.png"
android: true
ios: true
push your icon on specific path
then run on command:
$ flutter pub get
$ flutter pub pub run flutter_launcher_icons:main
the file list will shown after the command execution.
Flutter launcher icons link: https://pub.dev/packages/flutter_launcher_icons
Comments