What rules apply if you aren't using `ViewModel`? ...
# compose
s
What rules apply if you aren't using
ViewModel
? (I'm supporting WASM, JS, iOS, desktop, Android; and the release notes show that ViewModels are not yet stable) I've had issues where my
StateFlow
produced on my state that is
MutableStateFlow
doesn't trigger recomposition deep within my logic, explicitly it works in the
try
block under a
LaunchedEffect
but not in the
catch
blocks so no errors are shown on failure. Should I not be using
LaunchedEffect
inside my
@Composable fun
? - In that case, where should this go?