Phonefield
Features
Custom phone field with picker
Getting started
To use this package, add phonefield
to your pubspec.yaml
file:
dependencies:
phonefield: ^0.0.13
Usage
Check out the example directory for detailed examples:
PhoneField(
initialPhoneNumber: "+977",
onChanged: (p0) {
phoneNumber = p0;
setState(() {});
},
)