0 purchases
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.