rnett
MutableStateFlow().onCompletion{ emitAll(sharedFlow) }
Geert
sharedFlow.stateIn(someCoroutineScope)
Joffrey
uli
public interface StateFlow<out T> : SharedFlow<T> { /** * The current value of this state flow. */ public val value: T }
value
collectAsState
A modern programming language that makes developers happier.