Last updated:
0 purchases
progress indicator
Progress Indicator #
CircularProgress
Features #
circular progress indicator.
bar progress indicator.
Usage #
import 'package:progress_indicator/progress_indicator.dart';
copied to clipboard
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,
),
copied to clipboard
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,
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.