Buttons that show progress!

With asynch actions, use the buttons that soeak for themselves, show what they are doing and avoid duplicate clicks

Getting Started

Follow these steps to use this package

Add dependency

dependencies:
  progressive_buttons: ^1.0.0

Add import package

import 'package:progressive_buttons/progressive_buttons.dart';

Easy to use

Its super easy to use Progressive Button
Copy this code to see a progressive button 😊

ProgressiveButton(
    text: 'Click to Perform',
    onPressed: (index){Future.delayed(Duration(seconds: 2));},
)