react-native-rndrift
v1.3.2
Published
Drift module for React Native
Downloads
21
Readme
react-native-rndrift
Getting started
$ npm install react-native-rndrift --save
Mostly automatic installation
$ react-native link react-native-rndrift
Usage
import Rndrift from 'react-native-rndrift';
// Init Drift - https://app.drift.com/settings/livechat
Rndrift.setup('YOUR API TOKEN');
// Create a user
Rndrift.registerUser('unique id of the user', 'email');
// Logout user
Rndrift.logout();
// Display conversations view
Rndrift.showConversations();
// Display create conversation view
Rndrift.showCreateConversation();