Skip to content

Instantly share code, notes, and snippets.

@sumitkahar992
Created May 14, 2022 05:36
Show Gist options
  • Save sumitkahar992/cab40d40cc3619dd5a77e8fb1acc89bc to your computer and use it in GitHub Desktop.
Save sumitkahar992/cab40d40cc3619dd5a77e8fb1acc89bc to your computer and use it in GitHub Desktop.
SplashScreeen()
@Composable
fun WeatherNavigation() {
val navController = rememberNavController()
NavHost(navController = navController,
startDestination = WeatherScreens.SplashScreen.name){
composable(WeatherScreens.SplashScreen.name){
WeatherSplashScreen(navController = navController)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment