Scope for the content of AnimatedPane. It extends from the necessary animation scopes so developers can use the info carried by the scopes to do certain customizations.

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