Skip to content

Instantly share code, notes, and snippets.

@tiwiz
Last active July 2, 2018 12:05
Show Gist options
  • Save tiwiz/4e7e54438da58e60d8c6426f292db6ac to your computer and use it in GitHub Desktop.
Save tiwiz/4e7e54438da58e60d8c6426f292db6ac to your computer and use it in GitHub Desktop.
fun TextView.countdown() {
for (i in 10 downTo 1) {
  text = "Countdown $i…"
  delay(1000)
  }
  text="Done!"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment