intl_phone_field
intl_phone_field copied to clipboard
A customised Flutter TextFormField to input international phone number along with country code.
I added validation of the number in terms of the country chosen not just length also the validity based on the country number code rules
Hello team, I just showed three countries. I want to hide the search country textfield how to do it. Thanks
there's some old telephone number in indonesia that has 8 digits
I encountered an issue when trying to register a Congo-Brazzaville phone number in the input number field. The length after the country code was set to 7 characters, but phone...
Fix language code mismatch issue due to the `key` of `languageCode` being converted to lowercase before use. in the file [lib/countries.dart](https://github.com/vanshg395/intl_phone_field/blob/master/lib/countries.dart) all keys containing capital letters were affected under `nameTranslations`:...
@marcaureln A question to you as you were a maintainer of the package. Why not create a proper fork and continue work on new package where you have a full...
validator: (value) { if (isRequired && (value!.number.isEmpty)) { return 'Please enter phone number*'; } return null; } I implemented this validation within the form, but it’s not working as expected
I used this package in a Flutter web project. Regarding responsiveness, this doesn't provide a way to control the size of flag. So I ended up with the idea of...
Hi, currently have an issue where valid Namibia numbers are not being validated as valid due to the length requirement of 10 digits. Valid numbers with +264 country code with...