Should I always cancel my coroutine from `remember...
# compose
i
Should I always cancel my coroutine from
rememberCoroutineScope()
in
onDispose {}
in
DisposableEffect
?
n
no,
rememberCoroutineScope()
will cancel coroutine scope when you leave the composable
i
thanks