v1.0.3
modal_progress_indicator
Configurable modal progress indicator that blocks access to a wrapped widget and its subtree.
36Likes 18830-day downloads160Pub points
AndroidiOSWebmacOSWindowsLinux
Configurable modal progress indicator that blocks access to a wrapped widget and its subtree.
{"sdk":"flutter"}{"sdk":"flutter"}^6.0.0English project snapshot. Visit GitHub for the latest content.
Pub style: very good analysis License: MIT
Configurable modal progress indicator that blocks access to a wrapped widget and its subtree.
Example of using ModalProgressIndicator:
ModalProgressIndicator(
visible: true,
indicator: CircularProgressIndicator(),
options: BackgroundOptions(
color: Colors.black,
opacity: 0.5,
blurEffect: BlurEffect(
sigmaX: 1.5,
sigmaY: 1.5,
),
),
child: child,
)