flutter_launcher_icons 0.2.1 copy "flutter_launcher_icons: ^0.2.1" to clipboard
flutter_launcher_icons: ^0.2.1 copied to clipboard

outdatedDart 1 only

A package developed to simplify the task of updating your Flutter app's launcher icon. Fully flexible, allowing you to choose what platform you wish to update the launcher icon for and if you want, th [...]

Flutter Launcher Icons #

A command-line tool to quickly generate launcher icons for both iOS and Android platforms within any Flutter project.

Note: The tool will replace the existing default launcher icons for Flutter projects and so if you wish to keep them, please make a backup before running this tool.

✨ What's New #

Version 0.2.1 (25th April 2018)

Added extra iOS icon size (1024x1024)

  • Fixed iOS default icon name (Thanks to PR #25 - Thank you!)
  • Fixed issue #10 where the creation of the icons was failing due to the target folder not existing

🔍 Guide #

  1. Add dependency to your Flutter project's pubspec.yaml below any existing dependencies
dev_dependencies: 
  flutter_test:
    sdk: flutter
    
  flutter_launcher_icons: "^0.2.1"
  1. Within the same pubspec.yaml file, add flutter_icons config section
dev_dependencies: 
  flutter_test:
    sdk: flutter
    
  flutter_launcher_icons: "^0.2.1"
  
flutter_icons:
  image_path: "icon/icon.png" 
  android: true
  ios: "Example-Icon"
#### Attributes: 
image_path: The location of the icon image file which you want to use as the app launcher icon

android/ios: True / False - Set as true if you want the icons generated for that platform to replace the existing launcher icon

OR

android/ios: <icon name> - Alternatively, enter an icon name if you wish to use a new launcher icon in the project whilst keeping the old one.
  1. Run the command to generate the icons
flutter pub get
flutter pub pub run flutter_launcher_icons:main

👀 Example #

Video Example

Note: This is showing v0.0.5.

Special thanks #

Thanks to Brendan Duncan for the underlying image package to transform the pics.

6616
likes
0
pub points
100%
popularity

Publisher

verified publisherfluttercommunity.dev

A package developed to simplify the task of updating your Flutter app's launcher icon. Fully flexible, allowing you to choose what platform you wish to update the launcher icon for and if you want, the option to keep your old launcher icon in case you want to revert back sometime in the future.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

dart_config, image

More

Packages that depend on flutter_launcher_icons