DialogPanel

fun DialogScope.DialogPanel(modifier: Modifier = Modifier, enter: EnterTransition = AppearInstantly, exit: ExitTransition = DisappearInstantly, content: @Composable () -> Unit)

A container component that renders the dialog's panel and its contents.

Parameters

modifier

Modifier to be applied to the dialog panel.

enter

The enter transition for the dialog panel.

exit

The exit transition for the dialog panel.

content

The content of the dialog panel.