Flutter Datetime Picker Custom Dialog
Forked from (Pub) 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
Date time | 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.