hi all, what is the difference between ```navContr...
# compose
b
hi all, what is the difference between
Copy code
navController.navigate("next") {
    popUpTo("current") { inclusive = true }
}
and
Copy code
navController.navigateUp()
navController.navigate("next")
b
just to fix my question , the second one is
Copy code
navController.navigateUp()
navController.navigate("next")
is the first operation an atomic of the two above
what i notice is sometimes when i use
popUpTo("current") { inclusive = true }
and move to next page, whenever i hit back button, the previous page still there