FLUTTER ECOSYSTEM

goderbauer/contact_picker

एक फ्लटर प्लगइन जो एड्रेस बुक से एक संपर्क चुनने के लिए है।

संपर्क चयनकर्ता प्रोजेक्ट कवर
Stars
76
Forks
111
अंतिम पुश (UTC)
10 मार्च 2021
प्रोजेक्ट स्थिति
आर्काइव
Michael Goderbauer GitHub avatar
GITHUB User

Michael Goderbauer ↗

भाषाएँObjective-CJavaDartRuby

तकनीकी विषय

इस रिपॉज़िटरी के पैकेज

उपयोग की गई निर्भरताएँ

निर्भरता सूची 1 आइटम
  • flutter{"sdk":"flutter"}

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

ContactPicker plugin for Flutter

pub package

With this plugin a Flutter app can ask its user to select a contact from his/her address book. The information associated with the contact is returned to the app.

This plugin uses the operating system's native UI for selecting contacts and does not require any special permissions from the user.

Currently, the plugin only supports picking phone numbers. However, it should be easy to extend the plugin to request other properties from a contact (e.g. addresses) or to obtain the entire record of a contact (PRs are welcome).

Using the plugin

Follow the instructions in the Installing tab on pub.

After that, instantiate ContactPicker in your Flutter app and call selectContact on it to bring up the UI for selecting a contact. The function returns with the selected Contact object once the user has made a choice (or null if the user didn't select anything).

See example/lib/main.dart for an actual usage example.