You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,10 @@ flutter_icons:
26
26
image_path: "path/to/image.png"
27
27
background_color: "#hexcode"
28
28
theme_color: "#hexcode"
29
+
windows:
30
+
generate: true
31
+
image_path: "path/to/image.png"
32
+
icon_size: 48# min:48, max:256, default: 48
29
33
```
30
34
31
35
If you name your configuration file something other than `flutter_launcher_icons.yaml` or `pubspec.yaml` you will need to specify
@@ -73,6 +77,11 @@ Shown below is the full list of attributes which you can specify within your Flu
73
77
- `background_color`: Updates *background_color* in `web/manifest.json`
74
78
- `theme_color`: Updates *theme_color* in `web/manifest.json`
75
79
80
+
- `windows`: Add Windows related configs
81
+
- `generate`: Specifies weather to generate icons for Windows platform or not
82
+
- `image_path`: Path to web icon.png
83
+
- `icon_size`: Windows app icon size. Icon size should be within this constrains *48<=icon_size<=256, defaults to 48*
84
+
76
85
*Note: iOS icons should [fill the entire image](https://stackoverflow.com/questions/26014461/black-border-on-my-ios-icon) and not contain transparent borders.*
77
86
78
87
The next two attributes are only used when generating Android launcher icon
0 commit comments