Is `navController.previousBackStackEntry?.savedSta...
# compose
j
Is
navController.previousBackStackEntry?.savedStateHandle.set()
still a valid way to pass return values from a screen to the previous screen in the backstack using
navigation-compose
? Are there any other preferred ways? (asking coz I didn’t notice it in the navigation compose docs)
i
Yes, that's still the correct way to return a result
🙏 1