Display Country Only #23
-
Thank you for creating a very easy to implement Country Picker for Flutter. Thanks again. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Country Model have all the info you need for the selected country. Here is some useful:
If you want only the country name use @kewlfrogz Thanks for the question. If you have any additional questions or suggestions please feel free to ask. |
Beta Was this translation helpful? Give feedback.
Country Model have all the info you need for the selected country.
Here is some useful:
country.name
: The country name in English || e.g: United Kingdomcountry.countryCode
: The country code, ISO (alpha-2) || e.g: GBcountry.phoneCode
: The country phone code || e.g: 44country.displayname
: country name (country code) [phone code] || e.g: United Kingdom (GB) [+44]country.displayNameNoE164Cc
: country name (country code) || e.g: United Kingdom (GB)If you want only the country name use
country.name
or if you want the country name and country code usecountry.displayNameNoE164Cc
@kewlfrogz Thanks for the question. If you have any additional questions or suggestions please feel free to…