textStyle property

TextStyle? textStyle
final

The text style for the text in the SfHijriDateRangePicker month cells.

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,
         selectionMode: DateRangePickerSelectionMode.range,
         monthCellStyle: HijriDatePickerMonthCellStyle(
           textStyle: TextStyle(
             fontStyle: FontStyle.normal,
             fontWeight: FontWeight.w400,
             fontSize: 12,
             color: Colors.blue
           )
         ),
       ),
     ),
   );
 }

Implementation

final TextStyle? textStyle;