Currently I have the problem that the preview does...
# compose
l
Currently I have the problem that the preview doesn't work. For the preview I create a fake uiState:
Copy code
@Preview
@Composable
fun NameDialogPreview() {
    val uiState = mutableStateOf(
        NameDialogState(
            show = true, 
            nameFieldValue = TextFieldValue(text = "My name")
        )
    )
    NameDialog(uiState = uiState)
}
But it doesn't show anything.
a
it's been a while since I tried so my info may be out of date, but last I checked, dialogs and popups weren't supported in previews
☝️ 1
l
Ah, that explains it! Thank you 🙏
👍 1