MutableFloatState


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

Summary

Public properties

Float
Cmn
open Float
Cmn

Extension functions

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

Permits property delegation of vars using by for MutableFloatState.

Cmn

Inherited functions

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

Public properties

floatValue

var floatValueFloat

value

open var valueFloat

Extension functions

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

Permits property delegation of vars using by for MutableFloatState.