Seren
09/04/2025, 2:34 PMHome -> Intemediate -> Detail 1 or Detail2. After navigating we then pop this intermediate destination from the backstack.
The problem is that using this technique the exitTransition no longer works when hitting the back button; the screen completes immediately with no transition. I noticed that the exitTransition works in versions 2.7.* however this version has it's own bugs (specifically on the entry transition) so I cannot revert to this version.
Has anyone come across this? The only work around I can see right now is to declare a backHandler on Detail1 / Detail 2 and navigating to Home with a popupTo Home argument. However its not desirable because it re-loads the screen and using launchSingleTop also removes the transition.Ahmed
09/06/2025, 6:03 PMnavController.navigate(Detail1) {
popUpTo<Intermediate>(inclusive = true)
}Seren
09/08/2025, 7:53 AMAhmed
09/09/2025, 6:49 AMnavigation<T>?