Closed jimmyjung closed 7 months ago
I agree, I'm getting that letter and it's preventing me from upgrading the version.
Hey, thanks for reporting this. I'll add a proper solution with next release, but for now as a workaround you can just use version 3.1.0.
Hey, thanks for reporting this. I'll add a proper solution with next release, but for now as a workaround you can just use version 3.1.0.
Thanks!
I temporarily fixed the issue with the code below
TableCalendar(
locale: 'en_US',
daysOfWeekStyle: DaysOfWeekStyle(
dowTextFormatter: (date, locale) => DateFormat.E('ko_KR').format(date)[0],
...
),
headerStyle: HeaderStyle(
titleTextFormatter: (date, locale) => DateFormat('yyyy년 M월', 'ko_KR').format(date),
...
),
...
Hello~
If I set locale to 'ko_KR', dates in the calendar will be displayed with a '일' appended to them. ex. 1일, 2일, 3일
I want to set the header to 'ko_KR' to display the day of the week in Korean, and remove the '일' from the date.
Thank you.