Skip to content

Instantly share code, notes, and snippets.

@burakiren
Created November 13, 2020 07:33
Show Gist options
  • Save burakiren/63c3b67f8773ae65ad70171b78175677 to your computer and use it in GitHub Desktop.
Save burakiren/63c3b67f8773ae65ad70171b78175677 to your computer and use it in GitHub Desktop.
MVI - ExampleViewState
data class ExampleViewState(
val isPageLoading: Boolean = false,
val isPullToRefresh: Boolean = false,
val userData: User? = null,
val error: Throwable? = null
) {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment