country_flags_pro 0.1.1
country_flags_pro: ^0.1.1 copied to clipboard
A Flutter package by Sanjarbek Fayzullayev for building efficient, scalable, and user-friendly mobile applications with clean architecture and best practices.
Author #
country_flags_pro #
country_flags_pro
is a Flutter package that allows you to display country flags in SVG format. This package lets you easily fetch and display flags based on country codes.
🚀 Why Use country_flags_pro? #
✔ Works Offline – No internet required! 🌍
✔ Fast & Lightweight – Flags load instantly. ⚡
✔ Optimized SVG – High-quality flag images. 🏴
Installation #
To use this package, add the following dependencies to your pubspec.yaml
file:
dependencies:
flutter:
sdk: flutter
country_flags_pro: last_version
copied to clipboard
📌 Usage Example #
Code example:
import 'package:flutter/material.dart';
import 'package:flutter/material.dart';
import 'package:country_flags_pro/country_flags_pro.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
// This is the theme of your application.
// TRY THIS: Try running your application with "flutter run". You'll see
// the application has a purple toolbar. Then, without quitting the app,
// try changing the seedColor in the colorScheme below to Colors.green
// and then invoke "hot reload" (save your changes or press the "hot
// reload" button in a Flutter-supported IDE, or press "r" if you used
// the command line to start the app).
//
// Notice that the counter didn't reset back to zero; the application
// state is not lost during the reload. To reset the state, use hot
// restart instead.
//
// This works for code too, not just values: Most code changes can be
// tested with just a hot reload.
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: HomePage(),
);
}
}
class HomePage extends StatelessWidget {
var list = CountryFlagsPro.validCountryCodes;
static Iterable<String> mapCountryCodeName =
CountryFlagsPro.countryCodeAndName.values;
static List<String> listName = mapCountryCodeName.toList();
@override
Widget build(BuildContext context) {
return Scaffold(
body: GridView.builder(
gridDelegate:
SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 2),
itemCount: list.length,
itemBuilder: (context, index) {
return Padding(
padding: EdgeInsets.all(20),
child: CountryFlagsPro.getFlag(list[index], // Country code
width: 100.0, // Flag width
height: 400.0, // Flag height
fit: BoxFit.cover, // Flag fit
borderRadius: BorderRadius.circular(400), //Flag border radius
borderColor: Colors.black87, //Flag border color
borderWidth: 6 //Flag border width
),
);
},
),
);
}
}
copied to clipboard
🌍 Platform Support #
Platform | Supported |
---|---|
✅ Android | ✅ Yes |
✅ iOS | ✅ Yes |
✅ Web | ✅ Yes |
✅ Windows | ✅ Yes |
✅ macOS | ✅ Yes |
✅ Linux | ✅ Yes |
🌍 Available Flags #
This package supports all official country flags in SVG format. Example:
World Flags #
Country code and Full name #
🚀 country_flags_pro works completely offline!
'af': 'Afghanistan',
'ag': 'Antigua and Barbuda',
'ai': 'Anguilla',
'al': 'Albania',
'am': 'Armenia',
'ao': 'Angola',
'aq': 'Antarctica',
'ar': 'Argentina',
'as': 'American Samoa',
'at': 'Austria',
'au': 'Australia',
'aw': 'Aruba',
'ax': 'Åland Islands',
'az': 'Azerbaijan',
'ba': 'Bosnia and Herzegovina',
'bb': 'Barbados',
'bd': 'Bangladesh',
'be': 'Belgium',
'bf': 'Burkina Faso',
'bg': 'Bulgaria',
'bh': 'Bahrain',
'bi': 'Burundi',
'bj': 'Benin',
'bl': 'Saint Barthélemy',
'bm': 'Bermuda',
'bn': 'Brunei',
'bo': 'Bolivia',
'bq': 'Caribbean Netherlands',
'br': 'Brazil',
'bs': 'Bahamas',
'bt': 'Bhutan',
'bv': 'Bouvet Island',
'bw': 'Botswana',
'by': 'Belarus',
'bz': 'Belize',
'ca': 'Canada',
'cc': 'Cocos (Keeling) Islands',
'cd': 'Democratic Republic of the Congo',
'cf': 'Central African Republic',
'cg': 'Republic of the Congo',
'ch': 'Switzerland',
'ci': 'Ivory Coast',
'ck': 'Cook Islands',
'cl': 'Chile',
'cm': 'Cameroon',
'cn': 'China',
'co': 'Colombia',
'cr': 'Costa Rica',
'cu': 'Cuba',
'cv': 'Cape Verde',
'cw': 'Curaçao',
'cx': 'Christmas Island',
'cy': 'Cyprus',
'cz': 'Czech Republic',
'de': 'Germany',
'dj': 'Djibouti',
'dk': 'Denmark',
'dm': 'Dominica',
'do': 'Dominican Republic',
'dz': 'Algeria',
'ec': 'Ecuador',
'ee': 'Estonia',
'eg': 'Egypt',
'eh': 'Western Sahara',
'er': 'Eritrea',
'es': 'Spain',
'et': 'Ethiopia',
'eu': 'European Union',
'fi': 'Finland',
'fj': 'Fiji',
'fk': 'Falkland Islands',
'fm': 'Micronesia',
'fo': 'Faroe Islands',
'fr': 'France',
'ga': 'Gabon',
'gb': 'United Kingdom',
'gb-eng': 'England',
'gb-nir': 'Northern Ireland',
'gb-sct': 'Scotland',
'gb-wls': 'Wales',
'gd': 'Grenada',
'ge': 'Georgia',
'gf': 'French Guiana',
'gg': 'Guernsey',
'gh': 'Ghana',
'gi': 'Gibraltar',
'gl': 'Greenland',
'gm': 'Gambia',
'gn': 'Guinea',
'gp': 'Guadeloupe',
'gq': 'Equatorial Guinea',
'gr': 'Greece',
'gs': 'South Georgia and the South Sandwich Islands',
'gt': 'Guatemala',
'gu': 'Guam',
'gw': 'Guinea-Bissau',
'gy': 'Guyana',
'hk': 'Hong Kong',
'hm': 'Heard Island and McDonald Islands',
'hn': 'Honduras',
'hr': 'Croatia',
'ht': 'Haiti',
'hu': 'Hungary',
'id': 'Indonesia',
'ie': 'Ireland',
'il': 'Israel',
'im': 'Isle of Man',
'in': 'India',
'io': 'British Indian Ocean Territory',
'iq': 'Iraq',
'ir': 'Iran',
'is': 'Iceland',
'it': 'Italy',
'je': 'Jersey',
'jm': 'Jamaica',
'jo': 'Jordan',
'jp': 'Japan',
'ke': 'Kenya',
'kg': 'Kyrgyzstan',
'kh': 'Cambodia',
'ki': 'Kiribati',
'km': 'Comoros',
'kn': 'Saint Kitts and Nevis',
'kp': 'North Korea',
'kr': 'South Korea',
'kw': 'Kuwait',
'ky': 'Cayman Islands',
'kz': 'Kazakhstan',
'la': 'Laos',
'lb': 'Lebanon',
'lc': 'Saint Lucia',
'li': 'Liechtenstein',
'lk': 'Sri Lanka',
'lr': 'Liberia',
'ls': 'Lesotho',
'lt': 'Lithuania',
'lu': 'Luxembourg',
'lv': 'Latvia',
'ly': 'Libya',
'ma': 'Morocco',
'mc': 'Monaco',
'md': 'Moldova',
'me': 'Montenegro',
'mf': 'Saint Martin',
'mg': 'Madagascar',
'mh': 'Marshall Islands',
'mk': 'North Macedonia',
'ml': 'Mali',
'mm': 'Myanmar',
'mn': 'Mongolia',
'mo': 'Macau',
'mp': 'Northern Mariana Islands',
'mq': 'Martinique',
'mr': 'Mauritania',
'ms': 'Montserrat',
'mt': 'Malta',
'mu': 'Mauritius',
'mv': 'Maldives',
'mw': 'Malawi',
'mx': 'Mexico',
'my': 'Malaysia',
'mz': 'Mozambique',
'na': 'Namibia',
'nc': 'New Caledonia',
'ne': 'Niger',
'nf': 'Norfolk Island',
'ng': 'Nigeria',
'ni': 'Nicaragua',
'nl': 'Netherlands',
'no': 'Norway',
'np': 'Nepal',
'nr': 'Nauru',
'nu': 'Niue',
'nz': 'New Zealand',
'om': 'Oman',
'pa': 'Panama',
'pe': 'Peru',
'pf': 'French Polynesia',
'pg': 'Papua New Guinea',
'ph': 'Philippines',
'pk': 'Pakistan',
'pl': 'Poland',
'pm': 'Saint Pierre and Miquelon',
'pn': 'Pitcairn Islands',
'pr': 'Puerto Rico',
'ps': 'Palestine',
'pt': 'Portugal',
'pw': 'Palau',
'py': 'Paraguay',
'qa': 'Qatar',
're': 'Réunion',
'ro': 'Romania',
'rs': 'Serbia',
'ru': 'Russia',
'rw': 'Rwanda',
'sa': 'Saudi Arabia',
'sb': 'Solomon Islands',
'sc': 'Seychelles',
'sd': 'Sudan',
'se': 'Sweden',
'sg': 'Singapore',
'sh': 'Saint Helena',
'si': 'Slovenia',
'sj': 'Svalbard and Jan Mayen',
'sk': 'Slovakia',
'sl': 'Sierra Leone',
'sm': 'San Marino',
'sn': 'Senegal',
'so': 'Somalia',
'sr': 'Suriname',
'ss': 'South Sudan',
'st': 'São Tomé and Príncipe',
'sv': 'El Salvador',
'sx': 'Sint Maarten',
'sy': 'Syria',
'sz': 'Eswatini',
'tc': 'Turks and Caicos Islands',
'td': 'Chad',
'tf': 'French Southern Territories',
'tg': 'Togo',
'th': 'Thailand',
'tj': 'Tajikistan',
'tk': 'Tokelau',
'tl': 'Timor-Leste',
'tm': 'Turkmenistan',
'tn': 'Tunisia',
'to': 'Tonga',
'tr': 'Turkey',
'tt': 'Trinidad and Tobago',
'tv': 'Tuvalu',
'tw': 'Taiwan',
'tz': 'Tanzania',
'ua': 'Ukraine',
'ug': 'Uganda',
'um': 'United States Minor Outlying Islands',
'us': 'United States',
'uy': 'Uruguay',
'uz': 'Uzbekistan',
'va': 'Vatican City',
'vc': 'Saint Vincent and the Grenadines',
've': 'Venezuela',
'vg': 'British Virgin Islands',
'vi': 'U.S. Virgin Islands',
'vn': 'Vietnam',
'vu': 'Vanuatu',
'wf': 'Wallis and Futuna',
'ws': 'Samoa',
'xk': 'Kosovo',
'ye': 'Yemen',
'yt': 'Mayotte',
'za': 'South Africa',
'zm': 'Zambia',
'zw': 'Zimbabwe',
'ad': 'Andorra',
'ae': 'United Arab Emirates'
copied to clipboard