feat(mobile): 2026 font (#25213)

This commit is contained in:
Alex 2026-01-13 09:59:57 -06:00 committed by GitHub
parent 6e86697996
commit aba85b036c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
24 changed files with 33 additions and 31 deletions

View file

@ -147,9 +147,9 @@ ImmichTheme decolorizeSurfaces({required ImmichTheme theme}) {
}
String? _getFontFamilyFromLocale(Locale locale) {
if (localesNotSupportedByOverpass.contains(locale)) {
if (localesNotSupportedByAppFont.contains(locale)) {
// Let Flutter use the default font
return null;
}
return 'Overpass';
return 'GoogleSans';
}