Skip to main content
Filter by
Sorted by
Tagged with
0 votes
2 answers
64 views

Locale.Language - how to differentiate between regions

I have the following code: if let index = currentLanguages.firstIndex(where: { $0.languageCode == language.languageCode }) { currentLanguages.remove(at: index) } else { ...
StelzenPieper's user avatar
0 votes
0 answers
38 views

How to refactor a string into a ARB resource in Dart/Flutter?

I am working on a legacy Flutter app which does not have translations. I need to create many resource entries in the ARB file and then replace the text by AppLocalizations.of(context).something. Is ...
Thomas Weller's user avatar