lecle_loading 0.0.1+2
lecle_loading: ^0.0.1+2 copied to clipboard
A flutter widget of loading progress Indicator. Easy to use, easy to extend
Loading #
A flutter widget of loading progress Indicator. Easy to use, easy to extend. Migrate from loading package.
[./art/loading.gif]Installation #
Add dependency to pubspec.yaml
dependencies:
...
lecle_loading: ^0.0.1
Run in your terminal
flutter pub get
Example #
body: Container(
color: Colors.lightBlue,
child: Center(
child: LecleLoading(indicator: IndicatorType.ballBeat, size: 100.0, color: Colors.red),
),
),