phone_hint_text_field 0.0.1 icon indicating copy to clipboard operation
phone_hint_text_field: ^0.0.1 copied to clipboard

A new Flutter package for showing the phone number hints with a text field.

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()
        ),  
      ),  
    );  
  }  
}
3
likes
120
pub points
36%
popularity

Publisher

unverified uploader

A new Flutter package for showing the phone number hints with a text field.

Repository (GitLab)
View/report issues

Documentation

API reference

License

Icon for licenses.BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on phone_hint_text_field