How to access contact list in react native app
Look at React Native Contacts, found here
First you need to install react-native-contacts
library. Run this command npm install react-native-contacts --save
.
Then use this code
import Contacts from 'react-native-contacts';
Contacts.getAll((err, contacts) => {
if (err) {
throw err;
}
// contacts returned
})
For specific access on IOS
and android
go through this link React native contacts