free_contact_picker 0.1.0 copy "free_contact_picker: ^0.1.0" to clipboard
free_contact_picker: ^0.1.0 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 #

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 contact is returned to the app.

Example #

            ContactPicker().pickContact((contact) {
              print('name: ${contact['name']}');
              print('phone: ${contact['phone']}');
            });

or with error handler

            ContactPicker().pickContact((contact) {
              print('name: ${contact['name']}');
              print('phone: ${contact['phone']}');
            }, onError: (msg) => print(msg));

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.

1
likes
0
points
29
downloads

Publisher

unverified uploader

Weekly Downloads

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 contact is returned to the app.

Homepage

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on free_contact_picker

Packages that implement free_contact_picker