icons_launcher 1.2.0 copy "icons_launcher: ^1.2.0" to clipboard
icons_launcher: ^1.2.0 copied to clipboard

A command-line tool that simplifies the task of updating your Flutter app's launcher icon.

example/README.md

Installation #

flutter pub add --dev icons_launcher

How to use #

  • Add config to pubspec.yaml or create icons_launcher.yaml at root of project.
flutter_icons:
  image_path: 'assets/ic_logo_border.png'
  ios: true
  android: true
  • Use different images for each platform
flutter_icons:
  # image_path: 'assets/ic_logo_border.png'
  image_path_android: 'assets/ic_logo_border.png'
  image_path_ios: 'assets/ic_logo_rectangle.png'
  image_path_macos: 'assets/ic_logo_border.png'
  image_path_windows: 'assets/ic_logo_border.png'
  image_path_linux: 'assets/ic_logo_border.png'
  image_path_web: 'assets/ic_logo_border.png'
  adaptive_icon_background: 'assets/ic_background.png'
  adaptive_icon_foreground: 'assets/ic_foreground.png' 
  adaptive_icon_round: 'assets/ic_logo_round.png' #! (Optional)
  remove_alpha_ios: false
  remove_alpha_macos: false
  ios: true
  android: true
  macos: false
  windows: false
  linux: false
  web: false
  • After configured now you can run generation
flutter pub get
flutter pub run icons_launcher:create

Or with custom yaml file (like example for Flavor App)

flutter pub get
flutter pub run icons_launcher:create -f <your config file name here>
563
likes
0
pub points
97%
popularity

Publisher

verified publishermrrhak.com

A command-line tool that simplifies the task of updating your Flutter app's launcher icon.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

args, image, path, universal_io, yaml

More

Packages that depend on icons_launcher