v1.0.3
modal_progress_indicator
ラップされたウィジェットおよびそのサブツリーへのアクセスをブロックするカスタマイズ可能なモーダルプログレスインジケータ。
36いいね 18830日間ダウンロード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,
)