AnimatedContentScope



Receiver scope for content lambda for AnimatedContent. In this scope, transition can be used to observe the state of the transition, or to add more enter/exit transition for the content.

Summary

Inherited functions

From androidx.compose.animation.AnimatedVisibilityScope
open Modifier
Modifier.animateEnterExit(
    enter: EnterTransition,
    exit: ExitTransition,
    label: String
)

animateEnterExit modifier can be used for any direct or indirect children of AnimatedVisibility to create a different enter/exit animation than what's specified in AnimatedVisibility.

Cmn

Inherited properties

From androidx.compose.animation.AnimatedVisibilityScope
Transition<EnterExitState>

transition allows custom enter/exit animations to be specified.

Cmn