phone_number_controller 1.0.4 copy "phone_number_controller: ^1.0.4" to clipboard
phone_number_controller: ^1.0.4 copied to clipboard

A TextEditingController formatting international phone numbers as you type them.

phone_number_controller #

pub pub points popularity likes

This plugin provides a TextEditingController that formats international phone numbers as you type them.

Demo #

demo

Usage #

Two steps:

  1. In a stateful widget, define a PhoneNumberController:
final _controller = PhoneNumberController(countryCode: 'us');
  1. When building the text field, specify the controller:
TextFormField(
    controller: _controller,
    keyboardType: TextInputType.phone,
    ...
);
6
likes
140
pub points
38%
popularity

Publisher

verified publisherquis.co

A TextEditingController formatting international phone numbers as you type them.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, libphonenumber

More

Packages that depend on phone_number_controller