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