gpt4 book ai didi

dart - flutter 日期时间选择器添加开始和结束日期

转载 作者:IT王子 更新时间:2023-10-29 07:22:37 26 4
gpt4 key购买 nike

我在 flutter 文档中阅读了日期时间选择器,但它只支持选择一天并显示它但我想要的是选择开始日期和结束日期以显示这些日期之间的结果

任何人都可以帮我怎么做?

最佳答案

您可以使用date_range_picker

安装它:

  date_range_picker: ^1.0.3

然后像这样使用:

import 'package:date_range_picker/date_range_picker.dart' as DateRagePicker;
...
new MaterialButton(
color: Colors.deepOrangeAccent,
onPressed: () async {
final List<DateTime> picked = await DateRagePicker.showDatePicker(
context: context,
initialFirstDate: new DateTime.now(),
initialLastDate: (new DateTime.now()).add(new Duration(days: 7)),
firstDate: new DateTime(2015),
lastDate: new DateTime(2030)
);
if (picked != null && picked.length == 2) {
print(picked);
}
},
child: new Text("Pick date range")
)

enter image description here

引用:date_range_picker 1.0.5

关于dart - flutter 日期时间选择器添加开始和结束日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54849538/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com