dropdown_timepicker

Creator: coderz1093

Last updated:

0 purchases

dropdown_timepicker Image
dropdown_timepicker Images

Languages

Categories

Add to Cart

Description:

dropdown timepicker

Dropdown TimePicker #

A Dropdown Time picker for Flutter with customizable options. web demo https://timepicker.robertrobinson.in/
Features #





Getting started #
DropdownTimePicker()
copied to clipboard
Usage #
For more Example
DropdownTimePicker(
// inputDecoration: InputDecoration(
// enabledBorder: const OutlineInputBorder(
// borderSide: BorderSide(color: Colors.grey, width: 1.0),
// ),
// helperText: '',
// contentPadding: const EdgeInsets.all(8),
// border: OutlineInputBorder(
// borderRadius: BorderRadius.circular(10))), // optional
isDropdownHideUnderline: true, // optional
isFormValidator: true, // optional

width: 10, // optional
// is24format: true,
selectedAmPm: _selectedAmPm, // optional
selectedMins: _selectedMins, // optional
selectedHours: _selectedHours, // optional
onChangedAmPm: (value) {
_selectedAmPm = value!;
print('onChangedAmPm: $value');
},
onChangedMins: (value) {
_selectedMins = int.parse(value!);
print('onChangedMins $value');
},
onChangedHours: (value) {
_selectedHours = int.parse(value!);
print('onChangedHours: $value');
},
//boxDecoration: BoxDecoration(
// border: Border.all(color: Colors.grey, width: 1.0)), // optional

// hintTextStyle: TextStyle(color: Colors.grey), // optional
),
copied to clipboard
GitHub source code #
If you're interested on the code (feel free to modify it anyway you want), you can find it here: https://github.com/Robertrobinson777/dropdown_timepicker
Support #

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.