Package-level declarations
Functions
Link copied to clipboard
Link copied to clipboard
fun <T> rememberMutableDoubleStateOf(key1: Any?, key2: Any?, key3: Any?, value: Double): MutableDoubleState
This is an overload for the original method. If you have any questions, please see the documentation of the original method
Link copied to clipboard
fun <T> rememberMutableFloatStateOf(key1: Any?, key2: Any?, key3: Any?, value: Float): MutableFloatState
This is an overload for the original method. If you have any questions, please see the documentation of the original method
Link copied to clipboard
This is an overload for the original method. If you have any questions, please see the documentation of the original method
Link copied to clipboard
fun <T> rememberMutableLongStateOf(key1: Any?, key2: Any?, key3: Any?, value: Long): MutableLongState
This is an overload for the original method. If you have any questions, please see the documentation of the original method
Link copied to clipboard
fun <T> rememberMutableStateOf(value: T, policy: SnapshotMutationPolicy<T> = structuralEqualityPolicy()): MutableState<T>
fun <T> rememberMutableStateOf(key1: Any?, value: T, policy: SnapshotMutationPolicy<T> = structuralEqualityPolicy()): MutableState<T>
fun <T> rememberMutableStateOf(vararg keys: Any?, value: T, policy: SnapshotMutationPolicy<T> = structuralEqualityPolicy()): MutableState<T>
fun <T> rememberMutableStateOf(key1: Any?, key2: Any?, value: T, policy: SnapshotMutationPolicy<T> = structuralEqualityPolicy()): MutableState<T>
fun <T> rememberMutableStateOf(key1: Any?, key2: Any?, key3: Any?, value: T, policy: SnapshotMutationPolicy<T> = structuralEqualityPolicy()): MutableState<T>
This is an overload for the original method. If you have any questions, please see the documentation of the original method