Package helps you to make email or phone number contact tags like Google Gmail.
You can custom your model phone number to be compatible with your language, the default is the Vietnamese phone number format.
To use package. Add to your dependencies in pubspec.yaml file
contact_input_tag:
git: https://github.com/Ceschref/contact_input_tag
Phone Number input tag example
ContactInputTag(
label: 'Your Phone Number',
hintText: 'Input phone',
updateResult: (items) {},
typeTag: TypeTag.phoneNumber,
),
Email input tag example
ContactInputTag(
label: 'Your Email',
hintText: 'Input mail',
updateResult: (items) {},
typeTag: TypeTag.email,
listRecord: ['mail1@gmail.com'],
),