phone_form_field_plus 0.0.3 phone_form_field_plus: ^0.0.3 copied to clipboard
A phone nuber form field.
phone_form_field_plus #
A lightweight phone number text field fro Flutter
Getting Started #
Install #
pubspec.yaml
phone_form_field_plus: <latest_version>
Sample Usage
ValueNotifier<PhoneNumber> _phoneCtrl =
ValueNotifier(PhoneNumber('', Country.isoCode("US")));
// ...
PhoneFormField(
decoration: InputDecoration(
labelText: "Phone Number", border: OutlineInputBorder()),
controller: _phoneCtrl,
),