The key difference stems from the fact that `runBl...
# coroutines
e
The key difference stems from the fact that
runBlocking(UI) { ... }
is, unfortunately, equivalent to
runBlocking { ... }
(we should do smth about it), so the second one does the operation in the invoking thread, while the first one in the
UI
thread.
👍 1