In SfDateRangePicker in Flutter, When we are showing Norwegian Language as an App Locale, day names are showing like MAN., TIR. ONS., but I want to format this to only single word like M, T, O. I applied dayFormat also on it as "EE", but it did change the day format in English to M, T, W but in Norwegian it is still same as MAN., TIR. here is the code.
monthViewSettings: DateRangePickerMonthViewSettings(
firstDayOfWeek: 1,
viewHeaderStyle: DateRangePickerViewHeaderStyle(
textStyle: AppFonts.centuryGothic(
context: context,
color: AppColors.paragraphTextColor,
),
),
dayFormat: 'EE',
showWeekNumber: false,
enableSwipeSelection: false,
blackoutDates: widget.bookedDates,
),
and here is the picture