Ivan Šiser
10/03/2023, 8:55 AMclear arguments from backStackEntry
(jetpack compose navigation)?
I have a case where I need to pass some arguments to composable via deep link. If arguments do exists, I need to show some modal with info inside. The problem is when I navigate to another screen from that composable and then go back, modal screen is shown again because arguments still exists inside backStack.
ThanksIvan Šiser
10/03/2023, 8:59 AMbackStackEntry.arguments?.remove("key")
Tried with this, but it’s not workingCsaba Kozák
10/03/2023, 9:13 AM