maxDate property

HijriDateTime maxDate
final

The maximum date as much as the SfHijriDateRangePicker will navigate.

The SfHijriDateRangePicker 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 30th Dhu al-Hijjah of 1499.

Note: If the initialDisplayDate or controller.displayDate property set with the date after to this date, the SfHijriDateRangePicker will take this max date as a display date and render dates based on the date set to this property.

See also:


Widget build(BuildContext context) {
   return MaterialApp(
     home: Scaffold(
       body: SfHijriDateRangePicker(
         view: HijriDatePickerView.month,
         maxDate: HijriDateTime(1450, 12, 30),
       ),
     ),
   );
 }

Implementation

final HijriDateTime maxDate;