Last updated:
0 purchases
animated progress
Load your data more beautiful.
Installation #
You just need to add animated_progress as a dependency in your pubspec.yaml file.
dependencies:
animated_progress: ^0.0.1
copied to clipboard
Getting started #
All features you can use :
How To Use #
AnimatedProgress().circular(
isSpining: true,
value: .5, // The value of progrees. Default is 0.5
backgroundColor: Colors.green.shade100, // Background color
valueColor: Colors.green.shade900, // Progress color
),
copied to clipboard
AnimatedProgress().circular(
isSpining: true,
value: .5, // The value of progrees. Default is 0.5
valueColor: Colors.green.shade900, // Progress color
secondaryWidth : 5 , // Secondary width
secondaryColor :Colors.green.shade500, // Secondary color
),
copied to clipboard
Other Circular Progress Features #
spinDuration // Animation Duration
backgroundBorder // You Can Set Border With Your Customization
backgroundShape // Background Shape : BoxShape.rectangle
backgroundRadius // This Feature Only Works With BoxShape.rectangle
copied to clipboard
AnimatedProgress().linear(
height: 10,
width: MediaQuery.of(context).size.width,
value: .5, // The value of progrees. Default is 0.5
valueColor: Colors.green.shade900,// Progress color
backgroundColor: Colors.green.shade100, // Background color
),
copied to clipboard
Linear With Secondary Value #
AnimatedProgress().linear(
height: 10,
width: MediaQuery.of(context).size.width * .8,
value: .5, // The value of progrees. Default is 0.5
valueColor: Colors.green.shade900,// Progress color
backgroundColor: Colors.green.shade100, // Background color
secondaryValue: .7,// The value of progrees. Default is 0
secondaryValueColor: fgColor.withAlpha(100), // Progress color
),
copied to clipboard
Other Linear Progress Features #
boxShadow // You Can Set Shadow
border // You Can Set Border With Your Customization
valueAnimationDuration // Duration Of Animation
direction // Use LinearDirection.leftToRight Or LinearDirection.rightToLeft
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.