Phone Hint Text Field

Phone Hint Text Field package is suggest the list of mobile numbers from your device to your Flutter app.

Installation

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  phone_hint_text_field: ^0.0.1
  1. Import the package and use it in your Flutter App.
import 'package:phone_hint_text_field/phone_hint_text_field.dart';

class PhoneAuthPage extends StatelessWidget {  
  const PhoneAuthPage({Key? key}) : super(key: key);  
  
  @override  
  Widget build(BuildContext context) {  
    return Scaffold(  
      body: Center(  
        child: PhoneHintTextField(  
          child: TextField()
        ),  
      ),  
    );  
  }  
}