Skip to content

Instantly share code, notes, and snippets.

@Laimiux
Last active September 25, 2019 17:43
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/8ecc5fe84ed891c2492239d35c69d3ee to your computer and use it in GitHub Desktop.
Save Laimiux/8ecc5fe84ed891c2492239d35c69d3ee to your computer and use it in GitHub Desktop.
fun startStopButton(state: State): ButtonRenderModel {
return ButtonRenderModel(
text = if (state.isRunning) "Stop" else "Start",
onSelected = { /* TODO: toggle the stopwatch */ }
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment