v0.4.0widget_loading
एक आसान तरीका है कि जब आपके पास अभी दिखाने के लिए कुछ नहीं है और समान समय में लोडिंग एनिमेशन की आवश्यकता है।
94लाइक 55730-दिन डाउनलोड150Pub अंक
AndroidiOSWebmacOSWindowsLinux
लोडिंग विजेट कंटेंट के लिए सरल विजेट।
{"sdk":"flutter"}{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
pub.dev github likes popularity pub points license
Simple widgets for loading widget contents. It's an easy way to hide a widget when you have nothing to show and need a loading animation at the same time.
Easy to use and highly customizable.
WiperLoading(
loading: loading,
interval: interval,
wiperDeformingFactor: deformingFactor,
curve: curve,
wiperBuilder: builder
wiperWidth: wiperWidth,
wiperColor: wiperColor,
wiperBuilder: wiperBuilder,
sizeCurve: sizeCurve,
sizeDuration: sizeDuration,
direction: wiperDirection,
child: Padding(
padding: const EdgeInsets.all(15.0),
child: yourChild,
),
...
)
or
WiperLoading.future(future: futureOfYourWidget, ...)
CircularWidgetLoading(
loading: loading,
child: yourChild,
...
)