minDate property

DateTime minDate
final

The minimum date as much as the SfDateRangePicker will navigate.

The SfDateRangePicker 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 January of 1900.

Note: If the initialDisplayDate or controller.displayDate property set with the date prior to this date, the SfDateRangePicker will take this min 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: SfDateRangePicker(
         view: DateRangePickerView.month,
         minDate: DateTime(2020, 01, 01),
       ),
     ),
   );
 }

Implementation

final DateTime minDate;