alertDialogOverlay
fun alertDialogOverlay(confirmButton: @Composable (OnClick) -> Unit, icon: @Composable () -> Unit? = null, title: @Composable () -> Unit? = null, text: @Composable () -> Unit? = null, dismissButton: @Composable (OnClick) -> Unit?, properties: DialogProperties = DialogProperties()): BasicAlertDialogOverlay<*, DialogResult>(source)
An overlay that shows an AlertDialog with configurable inputs.
See also
for docs on the parameters