progress_indicator 0.2.2 copy "progress_indicator: ^0.2.2" to clipboard
progress_indicator: ^0.2.2 copied to clipboard

A useful collection of custom progress indicators for flutter.

Progress Indicator #

CircularProgress

Features #

  • circular progress indicator.
  • bar progress indicator.

Usage #

import 'package:progress_indicator/progress_indicator.dart';

CircularProgressIndicator #

CircularProgress(
    percentage: 90.0,
    color: Colors.amber,
    backColor: Colors.grey,
    gradient: LinearGradient(colors: [Colors.blue, Colors.red]),
    showPercentage: true,
    textStyle:TextStyle(color: Colors.orange,fontSize: 70),
    stroke: 20,
    round: true,
),

BarProgressIndicator #

BarProgress(
    percentage: 30.0,
    backColor: Colors.grey,
    gradient: LinearGradient(colors: [Colors.blue, Colors.red]),
    showPercentage: true,
    textStyle:TextStyle(color: Colors.orange,fontSize: 70),
    stroke: 40,
    round: true,
),
36
likes
120
pub points
89%
popularity

Publisher

verified publisherrodrigoleonel.com

A useful collection of custom progress indicators for flutter.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on progress_indicator