fluttercommunity / flutter_launcher_icons

Flutter Launcher Icons - A package which simplifies 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. Maintainer: @MarkOSullivan94
https://pub.dev/packages/flutter_launcher_icons
MIT License
1.99k stars 396 forks source link

Allow Using URLs for Image Files #511

Open lcsvcn opened 1 year ago

lcsvcn commented 1 year ago

Description:

Currently, Flutter Launcher Icons requires image files to be local assets, which can be limiting in some scenarios. This PR aims to enhance the package's functionality by allowing developers to specify image URLs instead of local file paths, thus providing more flexibility in how app launcher icons are generated.

Changes Made:

Usage Example:

flutter_icons:
  android: true
  ios: true
  image_url: https://example.com/app_icon.png

Benefits: