Skip to content

Instantly share code, notes, and snippets.

@GuilhE

GuilhE/State.kt Secret

Created February 4, 2022 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GuilhE/7f39fcd20d54047810b7176a5b675900 to your computer and use it in GitHub Desktop.
Save GuilhE/7f39fcd20d54047810b7176a5b675900 to your computer and use it in GitHub Desktop.
Medium article - MVI+FSM
sealed class State {
object Idle : State()
object SettingTimer : State()
object CountingDown : State()
object Paused : State()
object Restarting : State()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment