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