datetime_picker_custom_qk 1.5.4
datetime_picker_custom_qk: ^1.5.4 copied to clipboard
A date time picker for flutter, you can choose date / time / date&time in English Dutch and Việt Nam.
Flutter Datetime Picker Custom Dialog #
Forked from [(Pub) Flutter_datetime_picker_plus](https://pub.flutter-io.cn/packages/flutter_datetime_picker_plus This package only works on Flutter >=3.10.0. If you need an older version, please use the original package.
(Pub) datetime_picker_custom_qk
Documentation #
A flutter date time picker inspired by flutter_datetime_picker_plus A flutter date time picker inspired by flutter-cupertino-date-picker You can choose date / time / date&time in multiple languages:
- Chinese(zh)
- Danish(da)
- Dutch(nl)
- English(en)
- French(fr)
- German(de)
- Hebrew(he)
- Indonesian(id)
- Italian(it)
- Japanese(jp)
- Kazakh(kk)
- Korean(ko)
- Persian(fa)
- Polish (pl)
- Portuguese(pt)
- Russian(ru)
- Spanish(es)
- Swedish(sv)
- Thai(th)
- Turkish(tr)
- Vietnamese(vi)
and you can also custom your own picker content
| Date VI | Date picker | Time picker | Date diaLog |
|---|---|---|---|
![]() |
![]() |
![]() |
![]() |
Demo App #

Usage #
Padding(
padding: const EdgeInsets.all(16.0),
child: picker.InputDateTimePicker(
isDiaLog: false,
controller: _dateController,
minDate: DateTime(2018, 1, 1),
decoration: const InputDecoration(
labelText: 'Input Select Date Custom Bottom',
hintText: 'Input Enter Date Custom Bottom',
suffixIcon: Icon(Icons.calendar_today),
),
onConfirm: (date) {
_dateController.text = date.toString();
print('confirm $date');
},
locale: picker.LocaleType.vi),
),
Getting Started #
For help getting started with Flutter, view our online documentation.
For help on editing package code, view the documentation.



