BlurredLoadingOverlay constructor

const BlurredLoadingOverlay({
  1. Key? key,
  2. required bool isLoading,
  3. required Widget child,
  4. LoadingStyle loadingStyle = LoadingStyle.pulseRing,
  5. Widget? customLoadingWidget,
  6. double blurSigma = 4.0,
  7. Color? backgroundColor,
  8. Color? loadingColor,
  9. double loadingSize = 50.0,
  10. Widget? headerWidget,
  11. Widget? footerWidget,
})

Creates a blurred loading overlay widget.

Implementation

const BlurredLoadingOverlay({
  super.key,
  required this.isLoading,
  required this.child,
  this.loadingStyle = LoadingStyle.pulseRing,
  this.customLoadingWidget,
  this.blurSigma = 4.0,
  this.backgroundColor,
  this.loadingColor,
  this.loadingSize = 50.0,
  this.headerWidget,
  this.footerWidget,
});