my_progress_bar 1.0.1 copy "my_progress_bar: ^1.0.1" to clipboard
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);
        });
    },
),
4
likes
0
points
54
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter package for showing progress bars

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on my_progress_bar