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