progress_loading_button 2.0.2 copy "progress_loading_button: ^2.0.2" to clipboard
progress_loading_button: ^2.0.2 copied to clipboard

A Material Flutter Button that supports variety of button styles. It is designed to be easy to use and customizable.

progress_loading_button #

GitHub repo size GitHub code size in bytes GitHub top language GitHub issues GitHub license

progress_loading_button is a free and open source (MIT license) Material Flutter Button that supports variety of buttons style demands. It is designed to be easy to use and customizable.

Get started #

Add this to your package's pubspec.yaml file:

progress_loading_button: '^1.0.0'

Install it #

You can install packages from the command line:

$ flutter pub get

Alternatively, your editor might support flutter pub get.

Import it #

Now in your Dart code, you can use:

import 'package:progress_loading_button/progress_loading_button.dart';

How to use #

Add LoadingButton to your widget tree:

LoadingButton(
    defaultWidget: Text('Click Me'),
    width: 196,
    height: 60,
    onPressed: () async {
        await Future.delayed(
            Duration(milliseconds: 3000),
            () {
                print('Button Pressed');
            },
        );
    },
)

More parameters:

LoadingButton({
    Key? key,
    required this.defaultWidget,
    this.loadingWidget = const CircularProgressIndicator(),
    required this.onPressed,
    this.type = LoadingButtonType.Raised,
    this.color,
    this.width = double.infinity,
    this.height = 40.0,
    this.borderRadius = 5.0,
    this.borderSide = BorderSide.none,
    this.animate = true,
  }) : super(key: key);

Three types supported:

enum LoadingButtonType {
  Raised,
  Flat,
  Outline,
}

Example #

Source #

Source code and example of this library can be found in git:

$ git clone https://github.com/gairick-saha/progress_loading_button.git
16
likes
120
pub points
83%
popularity

Publisher

verified publishergairicksaha.com

A Material Flutter Button that supports variety of button styles. It is designed to be easy to use and customizable.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on progress_loading_button