All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.dev.inmo.micro_utils.common.compose.MutableStateAsState.kt Maven / Gradle / Ivy

There is a newer version: 0.24.0
Show newest version
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