0.2.4 • Published 5 years ago
capacitor-contact-manager v0.2.4
Capacitor Contact Manager
This is a project for managing contacts in Capacitor Apps.
Features
Feature | iOS | Android |
---|---|---|
Retrieve list of contacts | ✅ | ✅ |
Retrieve filtered list of contacts | ✅ | ✅ |
Create Contact | ||
Edit Contact |
Installation
npm i capacitor-contact-manager
iOS Only
In your info.plist
, be sure to add a message for NSContactsUsageDescription
Usage
import { Plugins } from '@capacitor/core';
const { ContactManager } = Plugins;
const { data } = await ContactManager.getContacts({ query: searchTerm });
See the full docs here