Package io.kvision.event

Functions

eventFlow
Link copied to clipboard
inline fun <T : Widget> T.eventFlow(event: String): Flow<Pair<T, Event>>
Extension property returning Flow<Pair<Widget, Event>> for a given event

Properties

changeFlow
Link copied to clipboard
val <T : Widget> T.changeFlow: Flow<T>
Extension property returning Flow<Widget> for a change event.
clickFlow
Link copied to clipboard
val <T : Widget> T.clickFlow: Flow<T>
Extension property returning Flow<Widget> for a click event.
inputFlow
Link copied to clipboard
val <T : Widget> T.inputFlow: Flow<T>
Extension property returning Flow<Widget> for an input event.
mutableState
Link copied to clipboard
val <S> MutableStateFlow<S>.mutableState: MutableState<S>
Extension property returning a MutableState<S> for a MutableStateFlow<S>.
mutableStateFlow
Link copied to clipboard
val <S> MutableState<S>.mutableStateFlow: MutableStateFlow<S>
Extension property returning a MutableStateFlow<S> for a MutableState<S>.
observableState
Link copied to clipboard
val <S> StateFlow<S>.observableState: ObservableState<S>
Extension property returning an ObservableState<S> for a StateFlow<S>.
observableState
Link copied to clipboard
val <S> Flow<S>.observableState: ObservableState<S?>
Extension property returning an ObservableState<S?> for a Flow<S>.
stateFlow
Link copied to clipboard
val <S> ObservableState<S>.stateFlow: StateFlow<S>
Extension property returning a StateFlow<S> for an ObservableState<S>.