Skip to content

Instantly share code, notes, and snippets.

@furkanaskin
Created April 20, 2020 01:41
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 furkanaskin/9102b55818b7a08273c857bc20196106 to your computer and use it in GitHub Desktop.
Save furkanaskin/9102b55818b7a08273c857bc20196106 to your computer and use it in GitHub Desktop.
fun NavController.popBackStackAllInstances(destination: Int, inclusive: Boolean): Boolean {
var popped: Boolean
while (true) {
popped = popBackStack(destination, inclusive)
if (!popped) {
break
}
}
return popped
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment