Skip to content

Instantly share code, notes, and snippets.

@Morfly
Last active October 27, 2022 04:17
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 Morfly/d796b318937848a31d9b7a40226359fe to your computer and use it in GitHub Desktop.
Save Morfly/d796b318937848a31d9b7a40226359fe to your computer and use it in GitHub Desktop.
val navController = rememberNavController()
NavHost(navController = navController, startDestination = "movie-search") {
composable("movie-search") { MovieSearchScreen(...) }
composable("movie-details") { MovieDetailsScreen(...) }
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment