Clament John
10/23/2021, 5:22 AMClament John
10/23/2021, 5:23 AMClament John
10/23/2021, 5:29 AMfinish
the activity
@Composable
fun HomePage(controller: NavController) {
val activity = (LocalContext.current as? Activity)
Button(onClick = {
activity?.finish()
}) {
Text("Exit")
}
}
Ian Lake
10/23/2021, 5:36 AMNavController
operation that will ever finish your activity (those operations only affect the NavController's back stack) - you'd need to use finish
yourself.