0 purchases
stateful loader
stateful_loader #
A simple mixin that manages the loader state for you just by calling
showLoader and hideLoader
Getting Started #
Use the mixin in your widget's State
class MyHomePageState extends State<MyHomePage> with LoadingWidget {
//...
}
copied to clipboard
Call mixin methods to show/hide a loader
showLoading(context);
//...
hideLoading();
copied to clipboard
Override mixin methods only if needed, to customize the loader experience
class MyHomePageState extends State<MyHomePage> with LoadingWidget {
@override
bool get barrierDismissible => true;
@override
Widget get loaderWidget => CircularProgressIndicator();
//...
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.