free_contact_picker 0.0.1
free_contact_picker: ^0.0.1 copied to clipboard
Flutter plugin for pick contact on Android without any permission. With this plugin a Flutter app can ask its user to select a contact from his/her address book. The information associated with the co [...]
contact_picker #
A Flutter plugin to pick contact for Android.
Example #
final _contactPickerPlugin = ContactPicker();
String _contactName = '';
String _contactPhone = '';
_contactPickerPlugin.pickContact(
(contact) {
setState(() {
_contactName = contact['name'];
_contactPhone = contact['phone'];
});
},
onError: (error) {
debugPrint(error);
},
);
Getting Started #
This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.
For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.