What you have written works well without any issues.
But I recommend using collectAsStateWithLifecycle()
instead of collectAsState()
since the latter is not lifecycle-aware.
For a smoother UI, wrap your composable with AnimatedVisibility
instead of using a simple if
statement.
AnimatedVisibility(show) {
Text (text = "ExampleScreen", fontSize = 16.sp)
}