如何在flutter中选择多个日期

11dmarpk  于 2023-01-09  发布在  Flutter
关注(0)|答案(3)|浏览(233)

我想从日期选择器中选择多个日期(不是范围)。实际上,在我的应用程序中,我添加了一个研讨会,将在多天举办,如6月1日,6月7日,6月9日。所以我想添加添加多个日期。是否有一个选项,以选择多个日期在日期选择器?

eh57zj3b

eh57zj3b1#

尝试参考table_calendar包和**daterangepicker**使用syncfusion_flutter_datepicker包,希望对您有所帮助。

ddhy6vgd

ddhy6vgd2#

如果其他人正在查找此问题,最好使用showDateRangePicker()
你可以这样使用它

DateTimeRange? result = await showDateRangePicker(
      context: context,
      firstDate: DateTime(2022, 1, 1), // the earliest allowable
      lastDate: DateTime(2030, 12, 31), // the latest allowable
      currentDate: DateTime.now(),
      saveText: 'Done',
    );

Reference flutter
Reference 2

e3bfsja2

e3bfsja23#

    • 使用syncfusion_flutter_日期选择器20.4.42插件**

SfDateRangePicker(查看:日期范围选择器视图。月份,月份视图设置:日期范围选取器月视图设置(一周中的第一天:6),选择模式:日期范围选择器选择模式。多个,显示操作按钮:true,提交时:(val){打印(val); },取消时:(){_日期选取器控制器.选定范围=空; }),

相关问题