easy_contact_picker

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

easy contact picker

easy_contact_picker #
A Flutter contact picker.Writted with pure dart, supported both iOS and Android.
Get address book permissions before using.
Use this package #
Depend on it #
easy_contact_picker: ^0.0.2
copied to clipboard
Import it #
import 'package:easy_contact_picker/easy_contact_picker.dart';
copied to clipboard
Add permission #
Android
<uses-permission android:name="android.permission.READ_CONTACTS"/>
copied to clipboard
iOS
info.plist
Privacy - Contacts Usage Description
copied to clipboard
Tick the right box in the Background Modes Background fetch And Remote notification.
Sample #
1.Open the Native address book.
Future<List<Contact>> selectContacts() async {
final List result =
await _channel.invokeMethod('selectContactList');
if (result == null) {
return null;
}
List<Contact> contacts = new List();
result.forEach((f){
contacts.add(new Contact.fromMap(f));
});
return contacts;
}
copied to clipboard
2.Get contact list.
Future<Contact> selectContactWithNative() async {
final Map<dynamic, dynamic> result =
await _channel.invokeMethod('selectContactNative');
if (result == null) {
return null;
}
return new Contact.fromMap(result);
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.