Last active
March 8, 2022 02:20
-
-
Save KhomDrake/c0ed4d0782ea6c2c4958f6da0bfe4603 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
requestScope.launch { | |
val moviesComedy = loadMovies("Comedy") | |
val moviesAction = loadMovies("Action") | |
launch(Dispatchers.Main) { | |
showMoviesGenre(moviesComedy) | |
showMoviesGenre(moviesAction) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment