maxDate property
The maximum date as much as the SfDateRangePicker will navigate.
The SfDateRangePicker widget will navigate as maximum as to the given date, and the dates after that date will be disabled for interaction and navigation to those dates were restricted.
Defaults to 31st December of 2100
.
Note: If the initialDisplayDate or controller.displayDate
property
set with the date after to this date, the SfDateRangePicker will take
this max date as a display date and render dates based on the date set to
this property.
See also:
- initialDisplayDate, which used to navigate the date range picker to the specific date on initially.
- minDate, which is least available date for the date range picker.
controller.displayDate
, which used to navigate the date range picker to specific date on dynamically.- enablePastDates, which allows to enable the dates that falls before the today date for interaction.
- Knowledge base: How to enable or disable the past dates
- Knowledge base: How to restrict date range picker within the date limit
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: SfDateRangePicker(
view: DateRangePickerView.month,
maxDate: DateTime(2029, 12, 31),
),
),
);
}
Implementation
final DateTime maxDate;