Package-level declarations
Types
Link copied to clipboard
Link copied to clipboard
Provides the EmptyEffect singleton used by the SDAI core UI layer.
Link copied to clipboard
Provides the EmptyIntent singleton used by the SDAI core UI layer.
Link copied to clipboard
Provides the EmptyState singleton used by the SDAI core UI layer.
Link copied to clipboard
Functions
Link copied to clipboard
fun <S : MviState, I : MviIntent, E : MviEffect> MviComponent(viewModel: MviViewModel<S, I, E>, processEffect: (effect: E) -> Unit = {}, content: @Composable (state: S) -> Unit)
fun <S : MviState, I : MviIntent, E : MviEffect> MviComponent(viewModel: MviViewModel<S, I, E>, processEffect: (effect: E) -> Unit = {}, content: @Composable (state: S, processIntent: (I) -> Unit) -> Unit)
Renders the MviComponent UI for the SDAI presentation layer.