my_progress_bar 1.0.0
my_progress_bar: ^1.0.0 copied to clipboard
Flutter package for showing progress bars
ProgressBars #
This is the package which can be use to create progress bars.
Progress bar preview #
A simple progress bar.
Getting started #
dependencies:
progress_bars: "^1.0.0"
or
flutter pub get progress_bars
Usage #
Import the ProgressBar in the dart file
import 'package:progress_bars/progress_bars.dart';
ProgressBars(
maxValue: 20,
currentPosition: currentPosition,
onChanged: (value) {
setState(() {
print(value);
});
},
),