Something like that? ```launch(context) { val som...
# coroutines
g
Something like that?
Copy code
launch(context) {
 val someData = api.getData().await()
 run(MainThread) { textView.text = someData }
 //Some other code 
}
👍 1