motionAnimatedVisibility

@Composable
fun IComponent.motionAnimatedVisibility(visible: Boolean, transition: MotionTransition = MotionTransition(), outTransition: MotionTransition = transition, content: @Composable IComponent.() -> Unit)(source)

The motionAnimatedVisibility composable animates the appearance and disappearance of its content, as visible value changes. Different in/out animations can be specified using transition and outTransition. The function uses Motion animations to animate the visibility of the content.

Parameters

visible

defines whether the content should be visible

transition

MotionTransition used for the appearing animation, defaults to TransitionType.Fade

outTransition

MotionTransition used for the disappearing animation, defaults to transition

content

Content to appear or disappear based on the value of visible