Flutter native splash screen image problem

267 views Asked by At

I'm using the flutter native splash screen package for customizing the default splash in my flutter splash screen. I added an image to the splash screen, but the image doesn't fit properly.

My current splash screen looks like this:

current splash screen

What I want to achieve:

desired splash screen

This is my pubspec file:

# flutter_native_splash-development.yaml
flutter_native_splash:
color: "#ffffff"
image: assets/icons/splash_icon.png
color_dark: "#121212"
image_dark:
fill: true
assets/icons/splash_icon.png

android_12:
    image: assets/icons/splash_icon.png
    image_dark: assets/icons/splash_icon.png
1

There are 1 answers

0
jon On

Take a look at the details in the Android 12+ section of the readme. The splash image needs blank padding within the image as per Android 12+ Splash API requirements.