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
+28-2
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,9 @@ A command-line tool which simplifies the task of updating your Flutter app's lau
9
9
10
10
## :sparkles: What's New
11
11
12
+
#### Version 0.7.2 (25th May 2019)
13
+
* Reverted back using old interpolation method
14
+
12
15
#### Version 0.7.1 (24th May 2019)
13
16
* Fixed issue with image dependency not working on latest version of Flutter (thanks to @sboutet06)
14
17
* Fixed iOS icon sizes which were incorrect (thanks to @sestegra)
@@ -39,7 +42,7 @@ Add your Flutter Launcher Icons configuration to your `pubspec.yaml` or create a
39
42
An example is shown below. A more complex example [can be found in the example project](https://github.com/fluttercommunity/flutter_launcher_icons/blob/master/example/pubspec.yaml).
40
43
```yaml
41
44
dev_dependencies:
42
-
flutter_launcher_icons: "^0.7.1"
45
+
flutter_launcher_icons: "^0.7.2"
43
46
44
47
flutter_icons:
45
48
android: "launcher_icon"
@@ -97,6 +100,29 @@ be used to fill out the background of the adaptive icon.
97
100
- `adaptive_icon_foreground`: The image asset which will be used for the icon foreground of the adaptive icon
98
101
99
102
103
+
## :question: Troubleshooting
104
+
105
+
Listed a couple common issues with solutions for them
106
+
107
+
108
+
#### Generated icon color is different from the original icon
109
+
110
+
Caused by an update to the image dependency which is used by Flutter Launcher Icons.
111
+
112
+
```
113
+
Use #AARRGGBB for colors instead of ##AABBGGRR, to be compatible with Flutter image class.
For best results try and use a foreground image which has padding much like [the one in the example](https://github.com/fluttercommunity/flutter_launcher_icons/blob/master/example/assets/images/icon-foreground-432x432.png).
Copy file name to clipboardExpand all lines: pubspec.yaml
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
name: flutter_launcher_icons
2
2
description: 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.
0 commit comments