Nthily
09/01/2021, 9:59 PMjetpack 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?Nthily
09/01/2021, 9:59 PMnavController.navigate("profile/user1234")
Nthily
09/01/2021, 10:00 PMnavController.navigate("profile"){
popUpTo("profile/user1234") { inclusive = true }
}
Ian Lake
09/01/2021, 10:19 PMnavController.popBackStack()