dayFormat property

String dayFormat
final

Formats a text in the SfHijriDateRangePicker month view view header.

Text format in the SfHijriDateRangePicker month view view header.

Defaults to EE.

See also:


Widget build(BuildContext context) {
   return MaterialApp(
     home: Scaffold(
       body: SfHijriDateRangePicker(
         controller: _pickerController,
         view: HijriDatePickerView.month,
         selectionMode: DateRangePickerSelectionMode.single,
         monthViewSettings: HijriDatePickerMonthViewSettings(
              dayFormat: 'EEE'),
       ),
     ),
   );
 }

Implementation

final String dayFormat;