intl_phone_number_field A customised Flutter TextFormField to input international phone number along with the country code. Usage InternationalPhoneNumberInput Available Parameters InternationalPhoneNumberInput( height: 60, controller: controller, inputFormatters: const [], formatter: MaskedInputFormatter(‘### ### ## ##’), initCountry: CountryCodeModel( name: «United States», dial_code: «+1», code: «US»), betweenPadding: 23, onChanged: (phone) { print(phone.code); }, loadFromJson: loadFromJson, dialogConfig: DialogConfig( backgroundColor: const Color(0xFF444448), searchBoxBackgroundColor: const Color(0xFF56565a), searchBoxIconColor: const …
