Yusuf Ibragimov
04/21/2025, 6:02 AMPablichjenkov
04/21/2025, 6:18 AMYusuf Ibragimov
04/21/2025, 6:22 AMStylianos Gakis
04/21/2025, 6:29 AMnavController.navigate(YourScreen(params)) { popUpTo(YourScreen) { inclusive = true} }Yusuf Ibragimov
04/21/2025, 6:40 AMPablichjenkov
04/21/2025, 6:48 AMYusuf Ibragimov
04/21/2025, 9:55 AMsindrenm
04/21/2025, 10:46 AMSavedStateHandleval handle = navController.previousBackStackEntry?.savedStateHandle
handle["result-key"] = "Result Value"composable<ScreenYouPoppedBackTo>() { backStackEntry ->
  val result = backStackEntry.savedStateHandle
    .getStateFlow<String?>("result-key", initialValue = null)
    .collectAsState()
}Jan Skrasek
04/22/2025, 9:57 AM