Skip to content

Instantly share code, notes, and snippets.

@tiwiz
Last active July 2, 2018 12:05
Show Gist options
  • Save tiwiz/7244cad37633cdce27f1f639759a196f to your computer and use it in GitHub Desktop.
Save tiwiz/7244cad37633cdce27f1f639759a196f to your computer and use it in GitHub Desktop.
suspend 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