Is there any update on supporting transitions in c...
# compose
r
Is there any update on supporting transitions in compose-navigation
👀 3
d
It's still a high priority on our roadmap. The new transition APIs were actually inspired by the need to support custom animations as a part of the navigation transition. 🙂
7
👍 2
c
@Doris Liu thats exciting! Do you by any chance know (or maybe this is more so for @Ian Lake ) but if my app is built with fragments that are composables (thats the route my new project is taking) will we be able to use the material transition api between fragments even though the fragments are fully composables? I'm just thinking of a basic master > detail scenario built with a single activity, 2 fragments (each fragment is a composable 100% internally)
i
View transition APIs cannot animate individual composables, so the best you'd probably get is animating the entire compose hierarchy (the
ComposeView
) as a single element
FWIW, you can star the feature request for transition support in Navigation Compose at https://issuetracker.google.com/issues/172112072
c
Will do. Thanks