Bernhard
04/15/2024, 1:15 PMArtem Kobzar
04/15/2024, 2:37 PMMainScope
for most of your coroutine needs.
val mainScope = MainScope()
fun load() {
mainScope.launch {
// your async logic here
}
}
CLOVIS
04/15/2024, 3:56 PMBernhard
04/16/2024, 7:56 AMCLOVIS
04/16/2024, 8:08 AMTodd
04/16/2024, 6:51 PM