Skip to content

Instantly share code, notes, and snippets.

@elihart
Created November 20, 2019 20:21
Show Gist options
  • Save elihart/1b640518b86f75f856da334d8a983771 to your computer and use it in GitHub Desktop.
Save elihart/1b640518b86f75f856da334d8a983771 to your computer and use it in GitHub Desktop.
MvRxViewModelExample
data class TextState(val text: String? = null) : MvRxState
class TextViewModel(state: TextState) : MvRxViewModel<TextState>(state) {
fun setText(text: String) {
setState {
copy(text = text)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment