Last updated:
0 purchases
phone hint 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 #
Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
phone_hint_text_field: ^0.0.1
copied to clipboard
Import the package and use it in your Flutter App.
import 'package:phone_hint_text_field/phone_hint_text_field.dart';
copied to clipboard
class PhoneAuthPage extends StatelessWidget {
const PhoneAuthPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: PhoneHintTextField(
child: TextField()
),
),
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.