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,
)