fix: capitalize the abbreviated weekday in the calendar grid

This commit is contained in:
Freek van de Ven 2024-07-24 10:47:56 +02:00 committed by Bart Ribbers
parent b0b5463ed9
commit e418ab3c31

View file

@ -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,
),