SimpleDialog

expect fun SimpleDialog(isOpen: Boolean, onDismissRequest: () -> Unit, modifier: Modifier = Modifier, content: @Composable () -> Unit)(source)

A simple dialog without the conventional components such as title, text, and buttons, showing just a Card overlay. The corresponding Compose UI Dialog component is actually not in the material3 package but in androidx.compose.ui.window. Currently not completely visually consistent on both kinds of platforms. On Compose UI, it doesn't have a min height; while on JS DOM, it does.

actual fun SimpleDialog(isOpen: Boolean, onDismissRequest: () -> Unit, modifier: Modifier, content: () -> Unit)(source)
actual fun SimpleDialog(isOpen: Boolean, onDismissRequest: () -> Unit, modifier: Modifier, content: () -> Unit)(source)