MutableDoubleState
-
Cmn
interface MutableDoubleState : DoubleState, MutableState
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.
See also | |
---|---|
DoubleState |
|
mutableDoubleStateOf |
Summary
Extension functions |
||
---|---|---|
inline operator Unit |
MutableDoubleState.setValue( Permits property delegation of |
Cmn
|
Extension functions
setValue
inline operator fun MutableDoubleState.setValue(
thisObj: Any?,
property: KProperty<*>,
value: Double
): Unit
Permits property delegation of var
s using by
for MutableDoubleState
.