showLoading method
OverlayEntryControl
showLoading({
- Widget builder(
- BuildContext context
- bool hasShadow = true,
override
Implementation
@override
OverlayEntryControl showLoading(
{Widget Function(BuildContext context)? builder,
bool hasShadow = true}) =>
show(
builder ??
(context) => const FourRotatingDots(color: Colors.blue, size: 40),
id: _loadingId,
zindex: _loadingZIndex,
backgroundColor: _loadingBackgroundColor,
type: OverlayLayoutTypeEnum.dialog,
);