v1.0.1counter_button
काउंटर बटन एक फ्लटर लाइब्रेरी है जो आपको काउंटर मान को बढ़ाने या घटाने पर एनिमेशन प्रभाव वाला बटन बनाने की अनुमति देती है।
31लाइक 15230-दिन डाउनलोड160Pub अंक
AndroidiOSWebmacOSWindowsLinux
गिनती बटन फ्लटर प्लगइन
{"sdk":"flutter"}{"sdk":"flutter"}^1.0.0यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
pub package GitHub stars GitHub forks GitHub license GitHub issues
Counter Button is a flutter library that allows you to create a button with animation effects when you increase or decrease the counter value.
Demo Loading demo
dependencies:
counter_button: ^1.0.1
import 'package:counter_button/counter_button.dart';
CounterButton(
loading: false,
onChange: (int val) {
setState(() {
_counterValue = val;
});
},
count: _counterValue,
countColor: Colors.purple,
buttonColor: Colors.purpleAccent,
progressColor: Colors.purpleAccent,
)
| parameter | description | default |
|---|---|---|
| count | Value of the counter | |
| countColor | Color of the counter | Colors.black |
| onChange | Value change callback when the buttons are pressed | |
| loading | For showing the linear progress indicator | |
| progressColor | Color of the progress indicator | Colors.black |
| buttonColor | Color of the icon button | Colors.black |
| addIcon | Add button icon | |
| removeIcon | Remove button icon | const Icon(Icons.remove) |
If you encounter any bugs feel free to open an issue. Raise a ticket on github for suggestions. Pull request are also welcome.
For help getting started with Flutter, view our online documentation.
For help on editing plugin code, view the documentation.
MIT License