A customised Flutter TextFormField to input european VAT numbers validated according to EU Guidelines.
This widget can be used to make customised text field to take vat number input for any EU country along with an option to choose country code from a dropdown.
To use this package:
Run this command:
flutter pub add intl_eu_vat_field
Or, add the following to your pubspec.yaml
file:
dependencies:
intl_eu_vat_field: ^1.0.2
Simply create a IntlVatNumberField
widget, and pass the required params:
IntlVatNumberField(
decoration: InputDecoration(
labelText: 'VAT Number',
border: OutlineInputBorder(
borderSide: BorderSide(),
),
),
initialCountryCode: 'PT',
onChanged: (phone) {
print(phone.completeNumber);
},
)
Use initialCountryCode
to set an initial Country Code.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
Comment on Issue or Pull Request, asking @all-contributors to add a contributor:
@all-contributors please add @<username> for <contributions>
<contributions>: See the Emoji Key (Contribution Types Reference) for a list of valid contribution types.