SharedTransitionScope
Common
Component in Compose Animation
[SharedTransitionScope] creates a [SharedTransitionScope] for the child layouts in [content]. Any child (direct or indirect) of the [SharedTransitionLayout] can use the receiver scope [SharedTransitionScope] to create shared element or shared bounds transitions. [SharedTransitionScope] will not creates a new Layout.
Last updated:
Installation
dependencies {
implementation("androidx.compose.animation:animation:1.8.0-alpha04")
}
Overloads
@ExperimentalSharedTransitionApi
@Composable
fun SharedTransitionScope(content: @Composable SharedTransitionScope.(Modifier) -> Unit)
Parameters
name | description |
---|---|
content | The children composable to be laid out. |