is there a way to check whether compose navigation...
# compose-android
j
is there a way to check whether compose navigation animation (which we define in NavHost composable for entry or exit) is completed or not? for fragments there are couple of solutions as mentioned in the image. Is there any equivalent of this for compose? I want to postpone updating the UI till transition is not completed (it is causing jank in animation if the state of UI changes in b/w transitions)
i
The exact same thing works in Navigation Compose: the Lifecycle only reaches RESUMED when the transition has finished
thank you color 1