Features

It is a simple textformfield that allows us to validate the mobile number length based on country code. We can customize it as we need.

Getting started

To use this package:

Run this command:

flutter pub add validate_phone_number

Or, add the following to your pubspec.yaml file:

dependencies:
validate_phone_number: ^0.0.1

Usage

Import it Now in your Dart code, you can use:

import 'package:validate_phone_number/validate_phone_number.dart';

How to Use Simply create a IntlPhoneField widget, and pass the required params:

ValidatePhoneNumber(
    countryCode: 'IN',
    phoneNumber: "1234567890"
    );