flutter_libphonenumber icon indicating copy to clipboard operation
flutter_libphonenumber copied to clipboard

No country flags are available

Open Dimplesinha opened this issue 1 year ago • 5 comments

Dimplesinha avatar Aug 06 '24 06:08 Dimplesinha

Can you provide more context?

acoutts avatar Aug 19 '24 15:08 acoutts

As this package have country code , but there is no option to select country flag

Dimplesinha avatar Aug 21 '24 10:08 Dimplesinha

Why not use emojis or this package?

https://pub.dev/packages/country_icons

Flags are a lot of work to maintain and outside of the scope of this package focused on phone number formatting.

acoutts avatar Aug 21 '24 10:08 acoutts

https://stackoverflow.com/questions/61402449/how-to-replace-country-code-to-flag-emoji-in-flutter

acoutts avatar Aug 21 '24 10:08 acoutts

Here's an approach that worked for me when retrieving country flag icons from Flagpedia. You can retrieve the flags via the country code in different image formats.

Here's an example for the Nigerian flag in SVG format: https://flagcdn.com/ng.svg. Note that the country code has to be in lowercase; otherwise, you'd get a request error.

Currently, the flags for Ascension Island (ac) and Tristan da Cunha (ta) aren't supported.

Emrys02 avatar Mar 31 '25 13:03 Emrys02