Skip to content

Instantly share code, notes, and snippets.

@k0siara
Created February 11, 2022 23:08
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 k0siara/64eebd946878c0f490869a6c37e9acaf to your computer and use it in GitHub Desktop.
Save k0siara/64eebd946878c0f490869a6c37e9acaf to your computer and use it in GitHub Desktop.
NavHostExample.kt
NavHost(startDestination = "profile/{userId}") {
...
composable(
"profile/{userId}",
arguments = listOf(navArgument("userId") { type = NavType.StringType })
) {...}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment