Skip to content

Animation Overview

Jetpack Compose provides powerful animation APIs.

Modifier.animateContentSize()
val alpha by animateFloatAsState(
targetValue = if (enabled) 1f else 0.5f,
label = "alpha"
)