Description
I'm having trouble getting the setup right:
Using the following settings:
flutter_icons:
android: "launcher_icon"
image_path: "lib/res/pizza.png"
adaptive_icon_background: "#ffe082"
adaptive_icon_foreground: "lib/res/pizza.png"
This isn't the desired output because this setting:
flutter_icons:
android: "launcher_icon"
image_path: "lib/res/pizza.png"
I've found a related issue here: #79
Anyway setting a adaptive_icon_background results in a way too big Icon the desired output is like the second Icon but with a background.
I'm not sure if I should pick one of the images produced by this tool or choosing the source image located in: lib/res/pizza.png
. Choosing a produced image just results in the same way too big Icon (or a blurry one choosing a lower resolution)
How do I produce an Icon as seen like in the second image but with a background?
Oh and also:
Removing settings as I did here, so deleting adaptive_icon_background
& adaptive_icon_foreground
and rerunning the tools does nothing, the settings generated are still there but should be removed.