feat(mobile): Capitalize month names in asset grid (#17898)

* capitalize month titles

* capitalize day titles as well
This commit is contained in:
Andreas Tollkötter 2025-04-28 15:56:36 +02:00 committed by GitHub
parent ad272333db
commit 21c7d70336
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -755,7 +755,7 @@ class _MonthTitle extends StatelessWidget {
key: Key("month-$title"),
padding: const EdgeInsets.only(left: 12.0, top: 24.0),
child: Text(
title,
toBeginningOfSentenceCase(title, context.locale.languageCode),
style: const TextStyle(
fontSize: 26,
fontWeight: FontWeight.w500,
@ -786,7 +786,7 @@ class _Title extends StatelessWidget {
@override
Widget build(BuildContext context) {
return GroupDividerTitle(
text: title,
text: toBeginningOfSentenceCase(title, context.locale.languageCode),
multiselectEnabled: selectionActive,
onSelect: () => selectAssets(assets),
onDeselect: () => deselectAssets(assets),