modal_progress_indicator 1.0.3 modal_progress_indicator: ^1.0.3 copied to clipboard
Configurable modal progress indicator that blocks access to a wrapped widget and its subtree.
Modal Progress Indicator #
Configurable modal progress indicator that blocks access to a wrapped widget and its subtree.
Usage #
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,
)