Skip to content

Instantly share code, notes, and snippets.

@Laimiux
Created September 24, 2019 21:42
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/acebdd0844a3bbb70c61c0881cd13e6a to your computer and use it in GitHub Desktop.
Save Laimiux/acebdd0844a3bbb70c61c0881cd13e6a to your computer and use it in GitHub Desktop.
fun resetButton(state: State, context: FormulaContext<State>): ButtonRenderModel {
return ButtonRenderModel(
text = "Reset",
onSelected = context.callback {
transition(state.copy(timePassedInMillis = 0, isRunning = false))
}
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment