【发布时间】:2020-01-18 09:08:19
【问题描述】:
我正在使用颤振showDatePicker 小部件https://api.flutter.dev/flutter/material/showDatePicker.html
当日期选择器弹出默认加载一周的开始是星期日时,我想将其更改为星期一。
关于如何实现这一点的任何建议?
Future<void> _selectDate(BuildContext context) async {
final DateTime picked = await showDatePicker(
context: context,
initialDate: _selectedDate,
firstDate: firstDate,
lastDate: lastDate,
locale: const Locale('en', 'GB'),
);
if (picked != null && picked != _selectedDate) {
// update the calendar slider with new date
setState(() {
_selectedDate = picked.add(Duration(hours: 1));
});
}
【问题讨论】:
标签: flutter