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

[FEATURE REQUEST] Generate `favicon.ico` for web #540

Open sentinel-1 opened 8 months ago

sentinel-1 commented 8 months ago

:speech_balloon: Description

For Web target currently favicon.png is generated among other icons. While PNG is a great format for all the remaining icons, it would be nice if the default "favicon.ico" icon was .ico rather than .png (alternatively, the favicon.ico variant could be present in addition to the favicon.png for cases when browsers try to use the .ico one). The missing favicon.ico causes some 404s.

:question: Platform

Web

sentinel-1 commented 8 months ago

My current solution (without the requested feature) is to place manually generated favicon.ico next to the automatically generated favicon.png and keep them both.