Is there any meaningful difference in doing `setContent{ LaunchedEffect(Unit){ suspend code } }` in ...
z
Is there any meaningful difference in doing
setContent{ LaunchedEffect(Unit){ suspend code } }
in my activity, as compared to
lifecycleScope.launch { suspend code }
? Both calls would be made in onCreate, and Im just curious really.