Question
Flutter v2.5.0 Android Splash Screen
I had implemented a native splash screen in my current project and everything was working correctly since I upgraded to v2.5.0 and I am starting to get this deprecation warning on my console:
A splash screen was provided to Flutter, but this is deprecated. See flutter.dev/go/android-splash-migration for migration steps.
I have checked out the given link (which is not that clear btw) and tells me to remove the o.flutter.embedding.android.SplashScreenDrawable
API as flutter now automatically displays the splash.
But after running my app without the code no splash screen appears moreover it takes a while to start the app - probably initializing the app without the splash or something.
Am I doing this right or is it an issue with the framework itself?