WDialog constructor
const
WDialog({
- Key? key,
- required Widget child,
- String? title,
- String? className,
- EdgeInsetsGeometry? padding,
- Color? backgroundColor,
- BorderRadius? borderRadius,
- bool barrierDismissible = true,
- Color? barrierColor,
- List<
Widget> ? actions, - double? width,
- double? height,
- AlignmentGeometry? alignment,
Implementation
const WDialog({
super.key,
required this.child,
this.title,
this.className,
this.padding,
this.backgroundColor,
this.borderRadius,
this.barrierDismissible = true,
this.barrierColor,
this.actions,
this.width,
this.height,
this.alignment,
});