fluttercontactpicker 5.0.0 copy "fluttercontactpicker: ^5.0.0" to clipboard
fluttercontactpicker: ^5.0.0 copied to clipboard

Use Androids' and iOS' native contact pickers to chose phone numbers and email addresses from contacts of the users address book

fluttercontactpicker #

pub.dev

Interact with native OS contact pickers using Flutter

Note: This plugin requires at least Kotlin 1.4.0 to compile

Web demo: https://fcp.mik.wtf/

Contents #

Getting Started #

Grab contact.

final PhoneContact contact =
    await FlutterContactPicker.pickPhoneContact();

For more info read the docs or take a look at the example

Features #

  • Pick a phone/email contact using the OSs native contact picker
  • Pick a Full contact (except iOS)
  • Support Flutter Web

Permissions #

If you target Android 11+ (API 30+) you need to obtain the android.permission.READ_CONTACTS permission, which is declared as a library permission here this permission will be requested automatically if the askForPermission parameter is true.

Alternatively you can request the permission manually with FlutterContactPicker.requestPermission() or check with FlutterContactPicker.hasPermission()

Obtain Full Contact (Android Only) #

Note: Unlike Android iOS does not offer a way to directly get a full contact from the ContactPicker therefore this library does not support it. Apple might add it in 2030 so stay tuned

final FullContact contact =
    await FlutterContactPicker.pickFullContact();

Obtain profile picture #

The FullContact class has a photo property if the picked contact has an avatar. You can use the asWidget() method to get a renderable Image widget.

Full documentation: https://pub.dev/documentation/fluttercontactpicker/latest/fluttercontactpicker/fluttercontactpicker-library.html

Web support #

This plugin also supports the Web Contact Picker API.

156
likes
130
pub points
97%
popularity

Publisher

verified publisherrittmeister.in

Use Androids' and iOS' native contact pickers to chose phone numbers and email addresses from contacts of the users address book

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

contact_picker_platform_interface, contact_picker_web, flutter

More

Packages that depend on fluttercontactpicker