I've been trying to add a splashscreen to my app, but every configuration that I've tried doesn't produce a nice result.
This was the last and simplest attempt that I've tried.
I'm testing in on a Samsung Galaxy S21 FE running android 13. I've also tested it with the Android Studio emulator on a Pixel 6 running Android 13 with the same result. My test with a Nexus 5X emulator running Android 11 doesn't have the two size image problem.
I'm using flutter_native_splash: ^2.2.18
to generate the splash screen.
This is my flutter_native_splash.yaml config:
flutter_native_splash:
color: "#eeeeee"
image: assets/launcher/launcher.png
android_12:
image: assets/launcher/launcher_android_12.png
color: "#eeeeee"
web: false
And these are the two images.
launcher_android_12.png
launcher.png
I've tried using both of the images on the general and android_12 config but neither of them generates a better result. I'd expect to see a continuous splash screen instead of a large image followed by a smaller one.