🌈 Create new beautiful Compose Gradients with our new wesite ->
Interface

MutableDoubleState

A value holder where reads to the doubleValue property during the execution of a Composable function cause the current RecomposeScope to subscribe to changes of that value.

Source set: Common
public interface MutableDoubleState : DoubleState, MutableState<Double>

A value holder where reads to the doubleValue property during the execution of a Composable function cause the current RecomposeScope to subscribe to changes of that value. When the doubleValue property is written to and changed, a recomposition of any subscribed RecomposeScopes will be scheduled. If doubleValue is written to with the same value, no recompositions will be scheduled.

Properties

value

Source set: Common
override var value: Double

doubleValue

Source set: Common
override var doubleValue: Double