FLUTTER ECOSYSTEM

goderbauer/contact_picker

주소록에서 연락처를 선택하기 위한 플러터 플러그인입니다.

연락처 선택기 프로젝트 이미지
Stars
76
Forks
111
최근 푸시(UTC)
2021. 3. 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.