flutter_datetime_picker 1.5.1 modified
|
|
7 年之前 | |
|---|---|---|
| .idea | 7 年之前 | |
| example | 7 年之前 | |
| lib | 7 年之前 | |
| test | 7 年之前 | |
| .gitattributes | 7 年之前 | |
| .gitignore | 7 年之前 | |
| CHANGELOG.md | 7 年之前 | |
| LICENSE | 7 年之前 | |
| README.md | 7 年之前 | |
| flutter_datetime_picker.iml | 7 年之前 | |
| pubspec.yaml | 7 年之前 | |
| screen_date.png | 7 年之前 | |
| screen_datetime_chinese.png | 7 年之前 | |
| screen_datetime_dutch.png | 7 年之前 | |
| screen_datetime_english.png | 7 年之前 | |
| screen_time.png | 7 年之前 |
A flutter date time picker inspired by flutter-cupertino-date-picker
you can choose date / time / date&time in English, Dutch and Chinese, and you can also custom your own picker content
| Date picker | Time picker | Date & Time picker (Chinese) | Date & Time picker (English-America) | Date & Time picker (Dutch) |
|---|---|---|---|---|
![]() |
![]() |
![]() |
![]() |
![]() |
FlatButton(
onPressed: () {
DatePicker.showDateTimePicker(context, showTitleActions: true, onChanged: (date) {
print('change $date');
}, onConfirm: (date) {
print('confirm $date');
}, currentTime: DateTime(2008, 12, 31, 23, 12, 34), locale: 'zh');
},
child: Text(
'show date time picker (Chinese)',
style: TextStyle(color: Colors.blue),
));
For help getting started with Flutter, view our online documentation.
For help on editing package code, view the documentation.