kDefaultContentDialogConstraints top-level constant

BoxConstraints const kDefaultContentDialogConstraints

The default constraints for ContentDialog.

The dialog is constrained to 368 logical pixels wide and 756 logical pixels tall by default, following the Windows design guidelines.

Implementation

const kDefaultContentDialogConstraints = BoxConstraints(
  maxWidth: 368,
  maxHeight: 756,
);