I have two screens, A and B in Master/Detail. B (Detail) has an actionbar on top with a back icon to go back to Master. However, I've noticed that if I doubletap the back icon, it goes back to A (as expected) and then the screen goes completely blank.
My current code to access screen B is as follows
NavHost(navController = navController, startDestination = ScreenRouter.ScreenA.route)
{
composable(ScreenRouter.PokemonList.route) {
PokedexList(showPokemonDetail = { myID ->
navController.navigate(
route = ScreenRouter.ScreenB.createRoute(myID)
)
})
}
composable(route = ScreenRouter.ScreenB.route) { backStackEntry ->
val myID = backStackEntry.arguments?.getString("id")
requireNotNull(myID)
ScreenB(
id = myID,
navigateUp = {navController.popBackStack()}
)
}
}
It feels like by the time I'm in Screen B, there are two screens loaded in memory. One popbackstack leads to Screen A. An additional popbackstack removes also that and leaves me in this blank "no-screen" situation.
How can I prevent this in a good practices way?
This is what's causing your problem:
https://developer.android.com/guide/navigation/backstack#handle-failure
So you can try implementing logic that evaluates whether there is something available in the backstack to pop