VerticalDateRangePicker constructor
const
VerticalDateRangePicker({
- Key? key,
- DateTimeRange? initialDateRange,
- required DateTime firstDate,
- required DateTime lastDate,
- DateTime? currentDate,
- String? restorationId,
- required ValueChanged<
DateTime?> onEndDateChanged, - required ValueChanged<
DateTime> onStartDateChanged, - Color? highLightColor,
- Color? selectedColor,
- TextStyle? selectedTextStyle,
- TextStyle? disabledTexStyle,
- bool? showPresentDay,
- Color? presentDayStrokeColor,
- double? itemHeight,
- Color? splashColor,
- double? spaceBetweenEachMonth,
- TextStyle? dayTextStyle,
- double? spaceBetweenRows,
- double? monthNameHeight,
- TextStyle? monthTextStyle,
- TextStyle? daysHeaderTexStyle,
A Material-style date range picker.
Implementation
const VerticalDateRangePicker({
Key? key,
this.initialDateRange,
required this.firstDate,
required this.lastDate,
this.currentDate,
this.restorationId,
required this.onEndDateChanged,
required this.onStartDateChanged,
this.highLightColor,
this.selectedColor,
this.selectedTextStyle,
this.disabledTexStyle,
this.showPresentDay,
this.presentDayStrokeColor,
this.itemHeight,
this.splashColor,
this.spaceBetweenEachMonth,
this.dayTextStyle,
this.spaceBetweenRows,
this.monthNameHeight,
this.monthTextStyle,
this.daysHeaderTexStyle,
}) : super(key: key);