flutter_spinbox 0.1.0 flutter_spinbox: ^0.1.0 copied to clipboard
SpinBox is a numeric input widget with an input field for entering a specific value, and stepper buttons for quick, convenient, and accurate value adjustments.
SpinBox for Flutter #
SpinBox for Flutter is a numeric input widget with an input field for entering a specific value, and stepper buttons for quick, convenient, and accurate value adjustments.
SpinBox is best suited for such applications where users typically know upfront the exact value they are entering, but may later have the need to accurately adjust a previously entered value.
Usage #
To use this package, add flutter_spinbox
as a dependency in your pubspec.yaml file.
import 'package:flutter_spinbox/flutter_spinbox.dart';
SpinBox(
min: 1,
max: 100,
value: 50,
onChanged: (value) => print(value),
)