flutter_progress_bar_button 0.0.4 copy "flutter_progress_bar_button: ^0.0.4" to clipboard
flutter_progress_bar_button: ^0.0.4 copied to clipboard

This is a Flutter animation progress button plugin

flutter_progress_bar_button #

This is a Flutter animation progress button plugin

Start #

Table of contents #

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
3
likes
130
points
39
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.08 - 2025.03.23

This is a Flutter animation progress button plugin

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on flutter_progress_bar_button