flutter_rounded_progress_bar 0.1.0 flutter_rounded_progress_bar: ^0.1.0 copied to clipboard
Rounded Progressbar in Flutter that customize color and border.
Flutter Rounded Progressbar #
Custom Progressbar
Usage #
simple rounded progress bar.
RoundedProgressBar(
childLeft: Text("$percent%",
style: TextStyle(color: Colors.white)),
percent: percent,
theme: RoundedProgressBarTheme.green)
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,
),
Custom duration animation.
RoundedProgressBar(
milliseconds:1000,
percent: percent,
theme: RoundedProgressBarTheme.yellow,
borderRadius: BorderRadius.circular(24)),
Theme #
RoundedProgressBarTheme.blue,
RoundedProgressBarTheme.red
RoundedProgressBarTheme.green
RoundedProgressBarTheme.purple
RoundedProgressBarTheme.yellow
RoundedProgressBarTheme.midnight
Widget #
childCenter , childLeft , childRight