Reputation: 295
Is it possible to change the app icon background color?
My icon image is png with transparent background. When I launch the app in android the app background color is white, while in ios the background color is black.
Here is the icon in android:
And here is the icon in ios:
Here is the code snippet for android in my AndroidManifest.xml
<application
android:label="R17 Group"
android:icon="@mipmap/ic_launcher">
</application>
Any solutions?
Upvotes: 1
Views: 8611
Reputation: 1
You can do it by opening your project on Android Studio.
Upvotes: 0
Reputation: 317
use flutter_launcher_icon package and customize your launcher icon yourself https://pub.dev/packages/flutter_launcher_icons
Upvotes: 1
Reputation: 37
if you want a white background why not replace the transparent with white?
Upvotes: 0