animateFloatAsState

@Composable
fun animateFloatAsState(value: Float, animation: MotionAnimation = defaultAnimation): State<Float>(source)

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.

Return

A State object, the value of which is updated by animation.

Parameters

value

Target value of the animation

animation

The animation that will be used to change the value through time. MotionAnimation.SpringPhysics is used by default.