Nice! I'm implemented something this week, by exte...
# compose
c
Nice! I'm implemented something this week, by extending
Crossfade
and allowing you to pass in a `TransitionDefinition`: https://gist.github.com/chrisbanes/c4d199a34366a4e13594f5f98d6e8620
👍 2
t
Looks interesting. Maybe i will change my implementation to use this composable as base. And build transition navigation ontop of that.
c
Let me know what you think. I really like using `TransitionDefinition`s as the source of truth for animations (where possible). Allows a lot of flexibility: i.e. you could provide a
SlideOutTransitionDefinition
which you'd simply pass to the function.
t
Do you have some sample code how to use it?