Loading
A flutter widget of loading progress Indicator. Easy to use, easy to extend. Migrate from loading package.

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