Last updated:
0 purchases
flutter circular progress indicator
Load your data more beautiful.
!!! ATTENTION #
The Package has been moved to :
animated_progress: ^0.0.1
https://pub.dev/packages/animated_progress/
UPDATES WILL GO THERE FROM NOW
!!! ATTENTION #
Fixed Bugs #
V 0.0.2 :
setState error fixed
Installation #
You just need to add flutter_circular_progress_indicator as a dependency in your pubspec.yaml file.
dependencies:
flutter_circular_progress_indicator: ^0.0.2
copied to clipboard
Getting started #
All features you can use :
Usage #
CircularProgressInd().normalCircular(
height: 55,
width: 55,
valueColor: Colors.pink,
secondaryColor: Colors.deepPurple[900],
secondaryWidth: 10,
valueWidth: 6);
copied to clipboard
CircularProgressInd().normalCircular(
height: 55,
width: 55,
isSpining: true,
spinDuration: Duration(seconds: 3),
valueColor: Colors.pink,
secondaryColor: Colors.deepPurple[900],
secondaryWidth: 10,
valueWidth: 6);
copied to clipboard
CircularProgressInd().normalCircular(
height: 55,
width: 55,
valueColor: Colors.deepOrange,
valueWidth: 5,
isSpining: true,
);
copied to clipboard
CircularProgressInd().normalCircular(
height: 55,
width: 55,
value: .4,
isSpining: true,
hasSpinReverse: true,
valueColor: Colors.pink,
secondaryColor: Colors.deepPurple[900],
secondaryWidth: 10,
valueWidth: 6);
copied to clipboard
CircularProgressInd().normalCircular(
height: 55,
width: 55,
isSpining: true,
secondaryColor: Colors.deepPurple[900],
secondaryWidth: 10,
backgroundColor: Colors.amber,
padding: EdgeInsets.all(10),
backgroundBorder:
Border.all(color: Colors.deepPurple, width: 3),
valueWidth: 6);
copied to clipboard
CircularProgressInd().normalCircular(
height: 80,
width: 80,
isSpining: true,
value: .01,
secondaryColor: const Color.fromARGB(255, 23, 82, 27),
secondaryWidth: 10,
backgroundShape: BoxShape.rectangle,
backgroundRadius: 10,
backgroundColor: Colors.green,
padding: EdgeInsets.all(10),
valueColor: Colors.green[200],
backgroundBorder: Border.all(
color: const Color.fromARGB(255, 23, 82, 27),
width: 3),
valueWidth: 6);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.