my_progress_bar 1.0.2 copy "my_progress_bar: ^1.0.2" to clipboard
my_progress_bar: ^1.0.2 copied to clipboard

Flutter package for displaying progress bars

my_progress_bar #

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. This package contains two types of progress bar.

  • HorizontalProgressBar()
  • VerticalProgressBar()

Visit Github repository of my_progress_bar for more information.

Progress bars preview #

Screenshot.

Getting started #

dependencies:
 my_progress_bar: ^1.0.2

or

flutter pub get my_progress_bar

Usage #

Import the following in the your project file.

import 'package:my_progress_bar/progress_bar.dart';

For HorizontalProgressBar() #

 HorizontalProgressBar(
    maxValue: 10,
    currentPosition: currentPosition,
    onChanged: (val) {
        setState(() {
            currentPosition = val;
        });
    },
)

For VerticalProgressBar() #

VerticalProgressBar(
    height: 200,
    maxValue: 10,
    currentPosition: currentPosition,
    onChanged: (val) {
        setState(() {
            currentPosition = val;
        });
    },
)

More customized progress bar and loaders coming.

4
likes
150
points
54
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter package for displaying progress bars

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on my_progress_bar