Revealer

@Composable
fun Revealer(reveal: Boolean, modifier: Modifier = Modifier, transitionType: RevealerTransitionType = RevealerTransitionType.NONE, transitionDuration: Int = 0, content: @Composable () -> Unit)

Creates a org.gnome.gtk.Revealer that animates the transition of its child's visibility.

Parameters

reveal

Whether the child is visible or invisible.

modifier

Compose Modifier for layout and styling.

transitionType

The type of animation that will be used.

transitionDuration

The duration, in milliseconds, of the animation.

content

The composable content to display.