FLUTTER ECOSYSTEM

goderbauer/contact_picker

アドレス帳から連絡先を選択するためのFlutterプラグインです。

連絡先ピッカー のプロジェクト画像
Stars
76
Forks
111
最終プッシュ(UTC)
2021/03/10
プロジェクト状態
アーカイブ済み
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.