Skip to content

Instantly share code, notes, and snippets.

@MrNtlu
Created December 8, 2022 16:52
Show Gist options
  • Save MrNtlu/411340bacc06711ca944a6806628752f to your computer and use it in GitHub Desktop.
Save MrNtlu/411340bacc06711ca944a6806628752f to your computer and use it in GitHub Desktop.
navController.navigate("settings")
// Pop everything up to the "home" destination off the back stack before
// navigating to the "settings" destination
navController.navigate("settings") {
popUpTo("home")
}
// Pop everything up to and including the "home" destination off
// the back stack before navigating to the "settings" destination
navController.navigate("settings") {
popUpTo("home") { inclusive = true }
}
// Navigate to the "search” destination only if we’re not already on
// the "search" destination, avoiding multiple copies on the top of the
// back stack
navController.navigate("search") {
launchSingleTop = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment