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

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

The newest version!
package dev.inmo.micro_utils.common.compose

import androidx.compose.runtime.DisposableEffectResult

class DefaultDisposableEffectResult(
    private val onDispose: () -> Unit
) : DisposableEffectResult {
    override fun dispose() {
        onDispose()
    }

    companion object {
        val DoNothing = DefaultDisposableEffectResult {}
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy