Animated Splash Screen with JetpackCompose
Make your app better
Splash screen (also known as launch screens or startup screen) is the screen that appears when you open an app on your mobile. This is used to provide a Brand introduction of your app or to provide a good user experience.
With the Latest Jetpack compose android provides its own splash API. But unfortunately, that will only work in Android 12 or higher. What about the other version?
Today I will write about a way to create a Splash screen that will support all the versions. Let’s start.
What Are We Reading
It’s great. Isn’t it? By the way, JC stands for Jetpack Compose 😃.
Add the Navigation
This code is pretty simple. We have two screen SplashScreen
and MainScreen
. startDestination
set the SplashScreen
as the first screen when the…