Home > Software engineering >  Flutter Localization with ARB files
Flutter Localization with ARB files

Time:12-17

Actually I was using Arb files for localization in that I don't know how to make and access array type value in .arb files with flutter

CodePudding user response:

You can simply define your object as a String separated by some common separator:

  "months": "january:february:march:april:may:june:july:august:september:october:november:december",
  "@months": {
    "description": "months"
  },

Then, split the String into an array:

String monthsString = AppLocalizations.of(context)!.months;
List<String> months = monthsString(':');
  • Related