animateColorAsState

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

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.

Return

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

Parameters

value

Target value of the animation. It needs to be provided using hex format e.g. Color.hex(0x00ff00).

animation

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