currentBackStackEntryAsState
Composable Function
Android
@Composable
public fun NavController.currentBackStackEntryAsState(): State<NavBackStackEntry?>
Gets the current navigation back stack entry as a State
. When the given navController changes
the back stack due to a NavController.navigate
or NavController.popBackStack
this will
trigger a recompose and return the top entry on the back stack.
Returns
state of the current back stack entry |