-
-
Save mukeshsolanki/8d919c7ad6c614a9a7d2e9294f3a5a57 to your computer and use it in GitHub Desktop.
used for https://medium.com/@themukeshsolanki/animated-splash-screen-in-android-with-compose-4b7dc1baecc5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MainActivity : ComponentActivity() { | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
setContent { | |
AnimatedSplashScreenTheme { | |
val navController = rememberNavController() | |
SetupNavGraph(navController = navController) | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment