Skip to content

smiLLe/flutter-localized-countries

 
 

Repository files navigation

flutter_localized_countries

Country code to name mappings for 122 languages.

This is a port of an npm package localized-countries for Flutter.

Data is taken from https://github.com/umpirsky/country-list.

This package bundles required assets and provides custom LocalizationsDelegate for loading them.

Usage

import 'package:flutter_localized_countries/flutter_localized_countries.dart';

void main() {
  runApp(MaterialApp(
    localizationsDelegates: [
      CountryNamesLocalizationsDelegate(),
      // ... more localization delegates
      GlobalMaterialLocalizations.delegate,
      GlobalWidgetsLocalizations.delegate,
    ],
    ...
  );
  
  ...
  
  print(CountryNames.of(context).nameOf('NL'));
}

Known Bugs

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 88.2%
  • Shell 11.8%