Last active
July 2, 2018 12:05
-
-
Save tiwiz/4e7e54438da58e60d8c6426f292db6ac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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