[Answered] How to pop back to previous activity in...
# compose
c
[Answered] How to pop back to previous activity in Jetpack navigation?
SO is in maintenance :/
Oh I could just
finish
the activity
Copy code
@Composable
fun HomePage(controller: NavController) {
    val activity = (LocalContext.current as? Activity)
    Button(onClick = {
        activity?.finish()
    }) {
        Text("Exit")
    }
}
i
Correct, there's no
NavController
operation that will ever finish your activity (those operations only affect the NavController's back stack) - you'd need to use
finish
yourself.
👍 1