Should I always cancel my coroutine from `rememberCoroutineScope()` in `onDispose {}` in `Disposable...
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