dayFormat property

String dayFormat
final

Formats a text in the SfDateRangePicker month view view header.

Text format in the SfDateRangePicker month view view header.

Defaults to EE.

See also:


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

Implementation

final String dayFormat;