commonMain.dev.inmo.micro_utils.common.compose.MutableStateAsState.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micro_utils.common.compose-jvm Show documentation
Show all versions of micro_utils.common.compose-jvm Show documentation
It is set of projects with micro tools for avoiding of routines coding
package dev.inmo.micro_utils.common.compose
import androidx.compose.runtime.MutableState
import androidx.compose.runtime.State
import androidx.compose.runtime.derivedStateOf
/**
* Converts current [MutableState] to immutable [State] using [derivedStateOf]
*/
fun MutableState.asState(): State = derivedStateOf { this.value }
© 2015 - 2025 Weber Informatics LLC | Privacy Policy