Hello All, How do we clear the backstack in the n...
# compose
d
Hello All, How do we clear the backstack in the navigation for compose. Before the beta07 there was a method called navController.backstack.clear. Now i see that is being removed. and something like backQueue.clear() is there. Is it the same thing ?
a
How about
popUpTo(rootRoute) { inclusive = true }
?
i
Those were never, ever public APIs. You'd want to use
popBackStack
if you want to...pop the back stack.