Home > Blockchain >  Change app icon background color in flutter
Change app icon background color in flutter

Time:02-03

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:

enter image description here

And here is the icon in ios:

enter image description here

Here is the code snippet for android in my AndroidManifest.xml

 <application
    android:label="R17 Group"
    android:icon="@mipmap/ic_launcher">
 </application>

Any solutions?

CodePudding user response:

if you want a white background why not replace the transparent with white?

CodePudding user response:

use flutter_launcher_icon package and customize your launcher icon yourself https://pub.dev/packages/flutter_launcher_icons

  •  Tags:  
  • Related