A scroll time picker widget for flutter.
Add this to your pubspec.yaml
:
dependencies:
your_package_name: ^1.0.0
ScrollTimePicker(
selectedTime: _selectedTime,
is12hFormat: true,
onDateTimeChanged: (DateTime value) {
setState(() {
_selectedTime = value;
});
},
)
We welcome contributions! Feel free to open issues or submit pull requests.
This package is licensed under the Apache V2 License - see the LICENSE file for details.