Please tell me how to add the addOnDestinationChan...
# compose
v
Please tell me how to add the addOnDestinationChangedListener correctly
j
Yeah, with the first variant the
apply
block will get called in every composition which you don't want. Use a
DisposableEffect
with the
NavController
as
key
like in Chris' example
🙏 1
i
I'd strongly recommend switching to the
currentBackStackEntryFlow
in Navigation 2.4.0-alpha01 and collecting on that in a `LaunchedEffect`: https://developer.android.com/reference/androidx/navigation/NavController#currentBackStackEntryFlow()
🙏 1
1