v1.0.3
modal_progress_indicator
可配置的模态进度指示器,可阻止对包装的控件及其子树的访问。
36喜欢 188近 30 天下载160Pub 分数
AndroidiOSWebmacOSWindowsLinux
可配置的模态进度指示器,可阻止对包装的控件及其子树的访问。
{"sdk":"flutter"}{"sdk":"flutter"}^6.0.0以下为英文项目原文快照,最新内容请访问 GitHub。
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,
)