But we have `launch(UI) { ... }` and `async(UI) { ...
# coroutines
e
But we have
launch(UI) { ... }
and
async(UI) { ... }
both of which run the code in
UI
context. It seems inconsistent that
runBlocking(UI) { ... }
does not work in the same way. It would have been Ok if
runBlocking
did not have
context
parameter at all, but since it does have it….
👍 1