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

commonMain.dev.datlag.tooling.decompose.lifecycle.LocalLifecycleOwner.kt Maven / Gradle / Ivy

There is a newer version: 1.7.0
Show newest version
package dev.datlag.tooling.decompose.lifecycle

import androidx.compose.runtime.compositionLocalOf
import com.arkivanov.essenty.lifecycle.Lifecycle
import com.arkivanov.essenty.lifecycle.LifecycleOwner
import com.arkivanov.essenty.lifecycle.LifecycleRegistry

/**
 * [LifecycleOwner] holder to use [collectAsStateWithLifecycle].
 */
val LocalLifecycleOwner = compositionLocalOf {
    object : LifecycleOwner {
        override val lifecycle: Lifecycle = LifecycleRegistry()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy