DialogBase
fun DialogBase(state: UseCaseState = rememberUseCaseState(true), properties: DialogProperties = DialogProperties(), onDialogClick: () -> Unit? = null, content: @Composable () -> Unit)
Base component for a dialog.
Parameters
state
The state of the sheet.
properties
DialogProperties for further customization of this dialog's behavior.
onDialogClick
Listener that is invoked when the dialog was clicked.
content
The content to be displayed inside the dialog.