Hi there, im using `jetpack compose navigation`, I...
# compose
n
Hi there, im using
jetpack compose navigation
, I want to ask when I use
Navigate with arguments
it will go back to the previous page by clicking the back button on the phone, but if I want to make a back button inside this interface and also go back to the previous page, how should I do it?
navController.navigate("profile/user1234")
but when I write the following code, it doesn't work
navController.navigate("profile"){
popUpTo("profile/user1234") { inclusive = true }
}
i
It sounds like you're looking for
navController.popBackStack()
❤️ 2
👍 2