<@U3ZLHBTLG> W.r.t. your `CoroutinesActivity` (abo...
# coroutines
e
@louiscad W.r.t. your
CoroutinesActivity
(above). I would recommend using
launch(UI, start=CoroutineStart.UNDISPATCHED) { ... }
in all that glue code because you know that you are already in
UI
. This way, you avoid extra dispatch and it becomes more performant & predictable.
👍🏽 1