2 questions from the last 7 days
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 {
...
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 ...