MutableIntState


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

Summary

Public properties

Int
Cmn
open Int
Cmn

Extension functions

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

Permits property delegation of vars using by for MutableIntState.

Cmn

Inherited functions

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

Public properties

intValue

var intValueInt

value

open var valueInt

Extension functions

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

Permits property delegation of vars using by for MutableIntState.