Created
September 10, 2022 20:42
-
-
Save zsoltk/a4665e923234ac179d3afe623f3564c6 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
lifecycle.coroutineScope.launchWhenStarted { | |
delay(1000) | |
repeat(3) { | |
delay(2000) | |
cards.indicateLike() | |
delay(1000) | |
cards.indicatePass() | |
delay(1000) | |
cards.votePass() | |
delay(1000) | |
cards.voteLike() | |
delay(500) | |
cards.voteLike() | |
delay(500) | |
cards.voteLike() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment