FDialog.raw constructor

const FDialog.raw({
  1. required Widget builder(
    1. BuildContext context,
    2. FDialogStyle style
    ),
  2. FDialogStyleDelta style = const .context(),
  3. Clip clipBehavior = .none,
  4. Animation<double>? animation,
  5. String? semanticsLabel,
  6. BoxConstraints constraints = const BoxConstraints(minWidth: 280, maxWidth: 560),
  7. bool resizeToAvoidInsets = true,
  8. Key? key,
})

Creates a FDialog with a custom builder.

Implementation

const FDialog.raw({
  required this.builder,
  this.style = const .context(),
  this.clipBehavior = .none,
  this.animation,
  this.semanticsLabel,
  this.constraints = const BoxConstraints(minWidth: 280, maxWidth: 560),
  this.resizeToAvoidInsets = true,
  super.key,
});