animatedVisibility

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

The animatedVisibility 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 CSS animations to animate the visibility of the content.

Parameters

visible

defines whether the content should be visible

transition

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

outTransition

CssTransition used for the disappearing animation, defaults to transition

content

Content to appear or disappear based on the value of visible