mirror of
https://github.com/Iconica-Development/flutter_availability.git
synced 2025-05-19 05:03:44 +02:00
fix: capitalize the abbreviated weekday in the calendar grid
This commit is contained in:
parent
b0b5463ed9
commit
e418ab3c31
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ class CalendarGrid extends StatelessWidget {
|
|||
var day = dayNames[index ~/ 2];
|
||||
return Expanded(
|
||||
child: Text(
|
||||
day,
|
||||
day.toUpperCase(),
|
||||
style: textTheme.bodyLarge,
|
||||
textAlign: TextAlign.center,
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue