Skip to content

Instantly share code, notes, and snippets.

@Laimiux
Created September 25, 2019 19:16
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 Laimiux/649832051adc458090e53490eb4d8275 to your computer and use it in GitHub Desktop.
Save Laimiux/649832051adc458090e53490eb4d8275 to your computer and use it in GitHub Desktop.
class StopwatchFormula : Formula<Unit, StopwatchFormula.State, StopwatchRenderModel> {
data class State(
val isRunning: Boolean
)
override fun initialState(input: Unit): State = State(
isRunning = false
)
....
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment