This progress indicator is intended as a stylized alternative to the other progress indicators floating around the web.
Choose from a radial progress indicator or its more traditional linear counterpart.
Too use this package in your projects, simply clone this repository and copy the pretty_progress_indicator.dart
file to your project.
Add a Pretty Progress Indicator to your application with one of the provided widgets:
@override
void build(BuildContext context) {
return Center(
child: Padding(
padding: const EdgeInsets.all(24.0),
child: PrettyProgressIndicator(
indicatorType: IndicatorType.radial,
progress: 0.63,
barWidth: 20.0,
textColor: Colors.red.shade200,
barColors: [
Colors.red.shade200,
Colors.pink.shade800,
],
),
),
);
}