ZetaDialog constructor
- Key? key,
- ZetaDialogHeaderAlignment headerAlignment = ZetaDialogHeaderAlignment.center,
- Widget? icon,
- String? title,
- required String message,
- String? primaryButtonLabel,
- VoidCallback? onPrimaryButtonPressed,
- String? secondaryButtonLabel,
- VoidCallback? onSecondaryButtonPressed,
- String? tertiaryButtonLabel,
- VoidCallback? onTertiaryButtonPressed,
- bool? rounded,
Creates a Zeta Dialog.
Implementation
const ZetaDialog({
super.key,
this.headerAlignment = ZetaDialogHeaderAlignment.center,
this.icon,
this.title,
required this.message,
this.primaryButtonLabel,
this.onPrimaryButtonPressed,
this.secondaryButtonLabel,
this.onSecondaryButtonPressed,
this.tertiaryButtonLabel,
this.onTertiaryButtonPressed,
super.rounded,
});