Is there currently anything that will allow to animate classic transition between the results list and details screen with shared element animation in Jetpack Compose? Something like this.
I know of some experimental libraries that allows that, but they all work on single activity and I was wondering of more traditional approach with 2 activities.
Shared elements in Compose are now available from 1.7.0-beta02 onwards.
Take a look at the official documentation here https://developer.android.com/develop/ui/compose/animation/shared-elements
Between two activities are not supported, but between two full screen composables (using NavHost, AnimatedContent or AnimatedVisibility), are supported.