loading 1.0.1 loading: ^1.0.1 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
Installation #
Add dependency to pubspec.yaml
dependencies:
...
loading: ^1.0.1
Run in your terminal
flutter packages get
Example #
body: Container(
color: Colors.lightBlue,
child: Center(
child: Loading(indicator: BallPulseIndicator(), size: 100.0),
),
),