blackoutDateTextStyle property
final
The text style for the text in the blackout dates cell of SfDateRangePicker month view.
Defaults to null.
Using a SfDateRangePickerTheme gives more fine-grained control over the appearance of various components of the date range picker.
See also: DateRangePickerMonthViewSettings.blackoutDates.
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: SfDateRangePicker(
controller: _pickerController,
view: DateRangePickerView.month,
enablePastDates: false,
selectionMode: DateRangePickerSelectionMode.multiRange,
monthCellStyle: DateRangePickerMonthCellStyle(
blackoutDateTextStyle: TextStyle(
fontStyle: FontStyle.italic,
fontWeight: FontWeight.w500,
fontSize: 18,
color: Colors.black54)),
),
),
);
}
Implementation
final TextStyle blackoutDateTextStyle;