As the title, is there any way to call a function after delay (1 second for example) in Kotlin?
Kotlin
val timer = Timer() timer.schedule(timerTask { nextScreen() }, 3000)