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