Package-level declarations

Types

Link copied to clipboard

CSS animation timing functions.

Link copied to clipboard
data class CssTransition(val type: TransitionType = TransitionType.Fade, val duration: Duration = 1.seconds, val timingFunction: CssTimingFunction = CssTimingFunction.Ease, val customTimingFunction: String? = null)

CSS animation transition parameters.

Link copied to clipboard
@Stable
sealed class MotionAnimation

Motion animation parameters.

Link copied to clipboard

Motion animation easing functions.

Link copied to clipboard
data class MotionTransition(val type: TransitionType = TransitionType.Fade, val animation: MotionAnimation = MotionAnimation.Tween())

Motion animation transition parameters.

Link copied to clipboard

Motion animation repeat types.

Link copied to clipboard

Animation transition types.

Functions

Link copied to clipboard
@Composable
fun animateColorAsState(value: Color, animation: MotionAnimation = defaultAnimation): State<Color>

Automatically animate Color value. When the provided value is changed, the animation will run automatically. If there is already an active animation it will animate towards the new value.

Link copied to clipboard
@Composable
fun animateCssSizeAsState(value: CssSize, animation: MotionAnimation = defaultAnimation): State<CssSize>

Automatically animate CssSize value. When the provided value is changed, the animation will run automatically. If there is already an active animation it will animate towards the new value.

Link copied to clipboard
@Composable
fun animateDoubleAsState(value: Double, animation: MotionAnimation = defaultAnimation): State<Double>

Automatically animate Double value. When the provided value is changed, the animation will run automatically. If there is already an active animation it will animate towards the new value.

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

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.

Link copied to clipboard
@Composable
fun animateFloatAsState(value: Float, animation: MotionAnimation = defaultAnimation): State<Float>

Automatically animate Float value. When the provided value is changed, the animation will run automatically. If there is already an active animation it will animate towards the new value.

Link copied to clipboard
@Composable
fun animateIntAsState(value: Int, animation: MotionAnimation = defaultAnimation): State<Int>

Automatically animate Int value. When the provided value is changed, the animation will run automatically. If there is already an active animation it will animate towards the new value.

Link copied to clipboard
@Composable
fun animateLongAsState(value: Long, animation: MotionAnimation = defaultAnimation): State<Long>

Automatically animate Long value. When the provided value is changed, the animation will run automatically. If there is already an active animation it will animate towards the new value.

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

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.