MutableDoubleState
Interface
Common
@JvmDefaultWithCompatibility
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
RecomposeScope
s will be scheduled. If doubleValue
is written to with the same value, no
recompositions will be scheduled.
Properties
Common
@get:AutoboxingStateValueProperty("doubleValue")
@set:AutoboxingStateValueProperty("doubleValue")
override var value: Double
Common
override var doubleValue: Double