rememberMutableIntStateOf

This is an overload for the original method. If you have any questions, please see the documentation of the original method

Remember a new MutableIntState initialized with the passed in value

The MutableState class is a single value holder whose reads and writes are observed by Compose. Additionally, writes to it is transacted as part of the Snapshot system.

Parameters

value

the initial value for the MutableIntState

See also


fun <T> rememberMutableIntStateOf(key1: Any?, key2: Any?, key3: Any?, value: Int): MutableIntState

This is an overload for the original method. If you have any questions, please see the documentation of the original method

Remember a new MutableIntState initialized with the passed in value

The MutableState class is a single value holder whose reads and writes are observed by Compose. Additionally, writes to it is transacted as part of the Snapshot system.

Parameters

value

the initial value for the MutableIntState

See also