minDate property
HijriDateTime
minDate
final
The minimum date as much as the SfHijriDateRangePicker will navigate.
The SfHijriDateRangePicker widget will navigate as minimum as to the given date, and the dates before that date will be disabled for interaction and navigation to those dates were restricted.
Defaults to 1st Muharram of 1356
.
Note: If the initialDisplayDate or controller.displayDate
property
set with the date prior to this date, the SfHijriDateRangePicker will
take this min date as a display date and render dates based on the date
set to this property.
See also:
- initialDisplayDate, which used to navigate the hijri date range picker to the specific date on initially.
- maxDate, which is last available date for the hijri date range picker.
controller.displayDate
, which used to navigate the hijri date range picker to specific date on dynamically.- enablePastDates, which allows to enable the dates that falls before the today date for interaction.
HijriDateTime
, which handles the hijri date value details.- 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: SfHijriDateRangePicker(
view: HijriDatePickerView.month,
minDate: HijriDateTime(1440, 01, 01),
),
),
);
}
Implementation
final HijriDateTime minDate;