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