count_button

Creator: coderz1093

Last updated:

0 purchases

count_button Image
count_button Images

Languages

Categories

Add to Cart

Description:

count button

CountButton #

Count Button is a Flutter package that allows you to easily implement a customizable item count widget with increment and decrement buttons.
This widget is particularly useful in scenarios where you need to manage the quantity of items,
such as in a shopping cart or inventory management system. for Android, iOS, macOS, Windows, Linux and Web

features #

Increment and decrement buttons for adjusting the item count.
Define the minimum and maximum values for the item count.
Customizable button icon, colors, sizes, and text styles.
Callback function to handle changes to the item count.

Platform Support #



Android
iOS
macOS
Web
Windows
Linux




✔️
✔️
✔️
✔️
✔️
✔️



Getting Started #
Add dependency #
dependencies:
count_button: ^1.0.1 #latest version
copied to clipboard
This sample to use the CountButton widget in your Flutter app:
CountButton(
selectedValue: countValue,
minValue: 0,
maxValue: 99,
foregroundColor: Colors.white,
onChanged: (value) {
setState(() {
countValue = value;
});
},
valueBuilder: (value) {
return Text(
value.toString(),
style: const TextStyle(fontSize: 20.0),
);
},
);
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.