FLUTTER ECOSYSTEM

chrisedg87/flutter_rounded_loading_button

Flutter के लिए एक सरल एनिमेटेड लोडिंग बटन विजेट का कार्यान्वयन

flutter_rounded_loading_button प्रोजेक्ट कवर
Stars
361
Forks
94
अंतिम पुश (UTC)
17 जून 2024
प्रोजेक्ट स्थिति
सक्रिय
Chris Edgington GitHub avatar
भाषाएँDartKotlinSwiftObjective-C

इस रिपॉज़िटरी के पैकेज

उपयोग की गई निर्भरताएँ

निर्भरता सूची 4 आइटम
  • flutter{"sdk":"flutter"}
  • rxdart>=0.26.0 <0.28.0
  • flutter_testडेवलपमेंट{"sdk":"flutter"}
  • effective_dartडेवलपमेंट^1.3.1

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

rounded_loading_button

pub package build codecov style: effective dart License: MIT Awesome Flutter

RoundedLoadingButton is a Flutter package with a simple implementation of an animated loading button, complete with success and error animations.

https://raw.githubusercontent.com/chrisedg87/flutter_rounded_loading_button/HEAD/screenshots/loading-button.gif

Installation

Add this to your pubspec.yaml:

dependencies:
    rounded_loading_button: ^2.0.8

Usage

Import
import 'package:rounded_loading_button/rounded_loading_button.dart';
Simple Implementation
final RoundedLoadingButtonController _btnController = RoundedLoadingButtonController();

void _doSomething() async {
    Timer(Duration(seconds: 3), () {
        _btnController.success();
    });
}

RoundedLoadingButton(
    child: Text('Tap me!', style: TextStyle(color: Colors.white)),
    controller: _btnController,
    onPressed: _doSomething,
)

The Rounded Loading Button has many configurable properties, including:

  • duration - The duration of the button animation
  • loaderSize - The size of the CircularProgressIndicator
  • animateOnTap - Whether to trigger the loading animation on the tap event
  • resetAfterDuration - Reset the animation after specified duration, defaults to 15 seconds
  • errorColor - The color of the button when it is in the error state
  • successColor - The color of the button when it is in the success state
  • successIcon - The icon for the success state
  • failedIcon - The icon for the failed state

Contributions

All contributions are welcome!