flutter_rounded_progress_bar 0.1.0 copy "flutter_rounded_progress_bar: ^0.1.0" to clipboard
flutter_rounded_progress_bar: ^0.1.0 copied to clipboard

outdated

Rounded Progressbar in Flutter that customize color and border.

Flutter Rounded Progressbar #

Custom Progressbar

Screenshot

Usage #

simple rounded progress bar.

RoundedProgressBar(
    childLeft: Text("$percent%",
        style: TextStyle(color: Colors.white)),
    percent: percent,
    theme: RoundedProgressBarTheme.green)

Screenshot

custom style progress bar.

RoundedProgressBar(
    style: RoundedProgressBarStyle(
        widthShadow: 30, colorBorder: Colors.blue[200]),
    percent: percent,
    reverse: true,
),
RoundedProgressBar(
    style: RoundedProgressBarStyle(
        borderWidth: 0, 
        widthShadow: 0),
    margin: EdgeInsets.symmetric(vertical: 16),
    borderRadius: BorderRadius.circular(24),
    percent: percent,
),       

Screenshot

Custom duration animation.

RoundedProgressBar(
    milliseconds:1000,
     percent: percent,
     theme: RoundedProgressBarTheme.yellow,
     borderRadius: BorderRadius.circular(24)),

Screenshot

Theme #

RoundedProgressBarTheme.blue, 
RoundedProgressBarTheme.red
RoundedProgressBarTheme.green
RoundedProgressBarTheme.purple
RoundedProgressBarTheme.yellow 
RoundedProgressBarTheme.midnight

Widget #

childCenter , childLeft , childRight Screenshot

80
likes
0
pub points
91%
popularity

Publisher

unverified uploader

Rounded Progressbar in Flutter that customize color and border.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_rounded_progress_bar