Skip to content

Instantly share code, notes, and snippets.

@LachlanMcKee
Created June 3, 2021 10:07
Show Gist options
  • Save LachlanMcKee/7754778ea182aa93aa8e35f768b5d068 to your computer and use it in GitHub Desktop.
Save LachlanMcKee/7754778ea182aa93aa8e35f768b5d068 to your computer and use it in GitHub Desktop.
Jetpack Compose Navigation Google example
NavHost(navController, startDestination = "profile") {
composable("profile") { Profile(...) }
composable("friendslist") { FriendsList(...) }
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment