[Flutter package]简单好用好扩展的时间日期选择器
2018-10-23 本文已影响158人
Realank
一、效果
| 时间 | 日期 | 中文时间日期 | 英文时间日期 |
|---|---|---|---|
|
|
|
|
|
二、使用
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');
其中currentTime如果不传,就是用当前的时间