Skip to content

Instantly share code, notes, and snippets.

@merttoptas
Last active March 22, 2023 11:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save merttoptas/a9ef2633571005706e6a551c186277cd to your computer and use it in GitHub Desktop.
Save merttoptas/a9ef2633571005706e6a551c186277cd to your computer and use it in GitHub Desktop.
@Composable
fun MainNavHost(
navController: NavHostController,
modifier: Modifier = Modifier,
startDestination: String = homeNavigationRoute
) {
NavHost(
modifier = modifier,
navController = navController,
startDestination = startDestination,
) {
homeScreen()
settingsScreen()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment