weekendTextStyle property

TextStyle? weekendTextStyle
final

The text style for the text in the weekend dates cell of SfHijriDateRangePicker 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:


Widget build(BuildContext context) {
   return MaterialApp(
     home: Scaffold(
       body: SfHijriDateRangePicker(
         controller: _pickerController,
         view: HijriDatePickerView.month,
         enablePastDates: false,
         selectionMode: DateRangePickerSelectionMode.multiRange,
         monthCellStyle: HijriDatePickerMonthCellStyle(
             weekendTextStyle: TextStyle(
                 fontStyle: FontStyle.italic,
                 fontWeight: FontWeight.w500,
                 fontSize: 12,
                 color: Colors.green)),
       ),
     ),
   );
 }

Implementation

final TextStyle? weekendTextStyle;