gradient_progress_bar 1.0.4 copy "gradient_progress_bar: ^1.0.4" to clipboard
gradient_progress_bar: ^1.0.4 copied to clipboard

This package allows you to Customise your progress indicator as Gradient progress indicator

gradient_progress_bar #

A Flutter package for both android and iOS which provides Gradient progress indicator

Usage #

Example

To use this package :

  dependencies:
    flutter:
      sdk: flutter
    gradient_progress_bar:

Screenshots #

Screenshot_1

How to use #

class Test extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Container(
      child:Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: const <Widget>[
            GradientProgressIndicator([
              Color(0xffF68270),
              Color(0xffF1C358),
              Color(0xffEFDE62),
              Color(0xffE5F3BE),
              Color(0xffCDE8F1),
              Color(0xffDDC5EE),
              Color(0xffF2E0F9),
            ], 0.8)
          ],
        ),
      ),
    );
  }
}
13
likes
120
pub points
84%
popularity

Publisher

verified publisher7span.com

This package allows you to Customise your progress indicator as Gradient progress indicator

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on gradient_progress_bar