UpAlertDialog constructor

const UpAlertDialog({
  1. Key? key,
  2. Widget? title,
  3. List<Widget>? actions,
  4. Widget? content,
  5. double? elevation,
  6. Widget? icon,
  7. String? semanticLabel,
  8. UpStyle? style,
  9. UpColorType? colorType,
  10. Clip clipBehavior = Clip.none,
  11. bool scrollable = false,
  12. MainAxisAlignment? actionsAlignment,
  13. double? actionsOverflowButtonSpacing,
  14. VerticalDirection? actionsOverflowDirection,
  15. AlignmentGeometry? alignment,
  16. OverflowBarAlignment? actionsOverflowAlignment,
})

Implementation

const UpAlertDialog({
  super.key,
  this.title,
  this.actions,
  this.content,
  this.elevation,
  this.icon,
  this.semanticLabel,
  this.style,
  this.colorType,
  this.clipBehavior = Clip.none,
  this.scrollable = false,
  this.actionsAlignment,
  this.actionsOverflowButtonSpacing,
  this.actionsOverflowDirection,
  this.alignment,
  this.actionsOverflowAlignment,
});