Status Update
Comments
il...@google.com <il...@google.com>
wk...@google.com <wk...@google.com>
ap...@google.com <ap...@google.com> #2
Is this specific to navigation? Or can this be reproduced with another other Composable component?
il...@google.com <il...@google.com>
il...@google.com <il...@google.com> #3
It only happens inside of a NavHost. So, yes, it seems to be specific to navigation.
zy...@gmail.com <zy...@gmail.com> #4
This was caused by the fix to BackHandler
lifecycle aware. The problem here is that the NavController
registers its lifecycle and added an observer to the Activity
Lifecycle
in composition while the BackHandler
registers its observer on the Activity
Lifecycle
in a DisposbleEffect
. This means that the NavController
will always get Lifecycle callbacks before the BackHandler
, so the components listening the the NavController
's lifecycle (like the NavBackStackEntry) will always get their Lifecycle callbacks before the BackHandler
as well.
This should be addressed by work coming in 2.7 to integrate the BackHandler
into the NavHost
.
Description
Version used:1.0.0-alpha03
Safe Args should also support Collections objects. Simple types will be enough for the first time. Thanks.