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
2.01k stars 406 forks source link

Use adaptive_icon_background when remove_alpha_ios is set to true #432

Open fotiDim opened 2 years ago

fotiDim commented 2 years ago

:speech_balloon: Description

I would like to use a single transparent icon and a programmatically added background color to generate iOS icons (without transparency) and adaptive Android icons (with transparency). Right now when I set remove_alpha_ios: true transparency is replaced with black. Inevitably now I have to generate icons, separately for each platform, using 2 different versions of my master icon, one with and one without background. It would be better to be replaced with the adaptive_icon_background color instead so that I can generate all icons using a single transparent image.

:question: Platform

iOS / Android

dvorapa commented 1 year ago

Seems #424 solves this

OutdatedGuy commented 1 year ago

@MarkOSullivan94, this issue has been resolved by using the background_color_ios key. Can you close it?

fotiDim commented 1 year ago

Seems there is still an issue.