Is it possible to use Shared Element Transition be...
# compose
c
Is it possible to use Shared Element Transition between Fragments using ComposeView?
👀 1
j
I don't believe there is. There are ways to do that in "compose-only world" (https://github.com/skydoves/Orbital), but ComposeView adds another boundary. Maybe if you try to share whole ComposeView it might work
c
Yeah... thanks! @Jakub Syty Unfortunately I'm not willing to go full Compose right now due to all edge-cases it brings hence I'm using Fragments + ComposeView. However thinking on what you've said, it may be possible to share the elements between Fragments if we wrap the Composable into an
AndroidView
. A bit hacky but may work, I'll take a look. Thanks!
j
Totally agree, we are too sticking with Fragments + ComposeView for now. But we are constantly looking at Apyx, seems very promising
k
Any update over this ? @Corey @Jakub Syty
j
Googlers seems to be working on that: https://android-review.googlesource.com/c/platform/frameworks/support/+/2833541 but it's still not officially supported