phone_hint_text_field 0.0.1 copy "phone_hint_text_field: ^0.0.1" to clipboard
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
140
points
23
downloads

Publisher

unverified uploader

Weekly Downloads

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

Repository (GitLab)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on phone_hint_text_field