diff options
Diffstat (limited to 'flutter_launcher_icons.yaml')
-rw-r--r-- | flutter_launcher_icons.yaml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/flutter_launcher_icons.yaml b/flutter_launcher_icons.yaml new file mode 100644 index 0000000..8e24aac --- /dev/null +++ b/flutter_launcher_icons.yaml @@ -0,0 +1,32 @@ +# flutter pub run flutter_launcher_icons +flutter_launcher_icons: + image_path: "assets/icon/icon.svg" + + android: true + image_path_android: "assets/icon/icon.png" + min_sdk_android: 21 # android min sdk min:16, default 21 + adaptive_icon_background: "#ffffff" + adaptive_icon_foreground: "assets/icon/icon.png" + adaptive_icon_monochrome: "assets/icon/icon.png" + + ios: true + # image_path_ios: "assets/icon/icon.png" + remove_alpha_channel_ios: true + # image_path_ios_dark_transparent: "assets/icon/icon_dark.png" + # image_path_ios_tinted_grayscale: "assets/icon/icon_tinted.png" + # desaturate_tinted_to_grayscale_ios: true + + web: + generate: false + image_path: "path/to/image.png" + background_color: "#hexcode" + theme_color: "#hexcode" + + windows: + generate: false + image_path: "path/to/image.png" + icon_size: 48 # min:48, max:256, default: 48 + + macos: + generate: false + image_path: "path/to/image.png" |