Last updated:
0 purchases
flutter progress bar button
flutter_progress_bar_button #
This is a Flutter animation progress button plugin
Start #
Table of contents #
circular_progress_button
rectangle_progress_button
Simple Use Circular #
int progress=5;
CircularAnimatedProgressBar(
size: 150,
progress: (progress.clamp(0, 10) / 10),
onPressed: () {
setState(() {
progress += 2;
});
})
copied to clipboard
Simple Use Rectangle #
int progress=5;
RectangleAnimatedProgressBar(
progress: (progress.clamp(0, 10) / 10),
enumPosition: PositionEnum.right,
colorsWave: const [
Color(0x4D2196f3),
Color(0x662196f3),
Color(0xCC2196f3),
],
backgroundColor: const Color(0x262192F3),
)
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.