commonMain.com.paoapps.fifi.viewmodel.ViewModelHelper.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fifi-framework Show documentation
Show all versions of fifi-framework Show documentation
Kotlin Multiplatform Mobile framework for optimal code sharing between iOS and Android.
package com.paoapps.fifi.viewmodel
import com.paoapps.fifi.utils.flow.FlowAdapter
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.distinctUntilChanged
fun Flow.viewModelOutput(scope: CoroutineScope): FlowAdapter = FlowAdapter(scope, this.distinctUntilChanged())
© 2015 - 2025 Weber Informatics LLC | Privacy Policy