Skip to content

Instantly share code, notes, and snippets.

@volodymyr-sch
Created October 18, 2021 15:15
Show Gist options
  • Select an option

  • Save volodymyr-sch/faccd5f0dd67c49d510a9f60da8c1d33 to your computer and use it in GitHub Desktop.

Select an option

Save volodymyr-sch/faccd5f0dd67c49d510a9f60da8c1d33 to your computer and use it in GitHub Desktop.
sealed class MyState {
object ShowProgressBar: MyState()
data class ShowError(val error: Throwable): MyState()
data class ShowListOfData(val data: List<Item>): MyState()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment