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. 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.

Summary

Public properties

Double
Cmn
open Double
Cmn

Extension functions

inline operator Unit
MutableDoubleState.setValue(
    thisObj: Any?,
    property: KProperty<*>,
    value: Double
)

Permits property delegation of vars using by for MutableDoubleState.

Cmn

Inherited functions

From androidx.compose.runtime.MutableState
operator Double
Cmn
operator (Double) -> Unit
Cmn

Public properties

doubleValue

var doubleValueDouble

value

open var valueDouble

Extension functions

inline operator fun MutableDoubleState.setValue(
    thisObj: Any?,
    property: KProperty<*>,
    value: Double
): Unit

Permits property delegation of vars using by for MutableDoubleState.