skip to Main Content

Android Screen, As you can see that white circle behind up-help, is there a way to change the color of that

Iphone Screen, it is working great for the iphone side, kinda what i want

Tried messing with the background image as well as the image size but any help would be great. Want to get rid of that white circle in the android screen.

2

Answers


  1. You have to change the launch_background.xml on android/app/src/main/res/drawable

    <?xml version="1.0" encoding="utf-8"?>
    <!-- Modify this file to customize your launch splash screen -->
    <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
        <item android:drawable="@android:color/white" /> <!-- HERE-->
    
        <!-- You can insert your own image assets here -->
        <!-- <item>
            <bitmap
                android:gravity="center"
                android:src="@mipmap/launch_image" />
        </item> -->
    </layer-list>
    
    Login or Signup to reply.
  2. I maintain a package flutter_native_splash that allows you to easily modify the Android 12 icon background color, among many other parameters. In that package, you would change the following parameter:

    flutter_native_splash:
      android_12:
        # App icon background color.
        icon_background_color: "#111111"
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search