feedback-react-native-sdk
v0.1.4
Published
test
Downloads
6
Readme
feedback-react-native-sdk
Pisano Feedback SDK for React Native
Installation
npm install feedback-react-native-sdk
Usage
import { feedbackSDKDebugMode } from 'feedback-react-native-sdk';
import { feedbackSDKBoot } from 'feedback-react-native-sdk';
import { feedbackSDKShow } from 'feedback-react-native-sdk';
import { feedbackSDKTrack } from 'feedback-react-native-sdk';
import { feedbackSDKClear } from 'feedback-react-native-sdk';
// ...
feedbackSDKDebugMode(bool);
feedbackSDKBoot(appId, accessKey, apiUrl, feedbackUrl, eventUrl);
feedbackSDKShow(flowId, language, customer, payload, (status) => {
console.log("Show Status: " + status);
});
feedbackSDKTrack(event, payload, customer, language, (status) => {
console.log("Show Status: " + status);
});
feedbackSDKClear();
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT
Made with create-react-native-library