FormeDialogConfiguration constructor

const FormeDialogConfiguration({
  1. bool barrierDismissible = true,
  2. Color? barrierColor = Colors.black54,
  3. String? barrierLabel,
  4. bool useSafeArea = true,
  5. bool useRootNavigator = true,
  6. Size sizeProvider(
    1. BuildContext context,
    2. MediaQueryData query
    )?,
  7. FormeMaterialConfiguration materialConfiguration = const FormeMaterialConfiguration(shape: RoundedRectangleBorder(borderRadius: BorderRadius.vertical(top: Radius.circular(10.0), bottom: Radius.circular(5.0)))),
  8. double? closeButtonSize,
  9. double? closeButtonRadius,
  10. IconData? closeButtonIcon,
  11. Color? closeButtonBackgroundColor,
  12. bool performSearchAfterOpen = true,
})

Implementation

const FormeDialogConfiguration({
  this.barrierDismissible = true,
  this.barrierColor = Colors.black54,
  this.barrierLabel,
  this.useSafeArea = true,
  this.useRootNavigator = true,
  this.sizeProvider,
  this.materialConfiguration = const FormeMaterialConfiguration(
    shape: RoundedRectangleBorder(
      borderRadius: BorderRadius.vertical(
          top: Radius.circular(10.0), bottom: Radius.circular(5.0)),
    ),
  ),
  this.closeButtonSize,
  this.closeButtonRadius,
  this.closeButtonIcon,
  this.closeButtonBackgroundColor,
  this.performSearchAfterOpen = true,
});