country_list

Creator: coderz1093

Last updated:

Add to Cart

Description:

country list

country_list #
A dart library provides a list of country data like Country Name, Dial Code, ISO Code.
Getting Started #

Install #
pubspec.yaml
country_list: <latest_version>
copied to clipboard
Usage #
import 'package:country_list/country_list.dart';

.....

ListView.builder(
itemCount: Countries.list.length,
itemBuilder: (_, position) {
Country country = Countries.list[position];
return ListTile(
leading: Text(country.dialCode),
title: Text(country.name),
subtitle: Text(country.isoCode),
);
},
),
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.