@frigade/react-native

The official React Native SDK for Frigade.
Installation
Install the package with either npm or yarn:
npm install @frigade/react-native
or
yarn add @frigade/react-native
Quick start
Place the FrigadeProvider
at the root level of your app. This will provide the context for the Frigade
component.
If available, you can optionally set the identifier of the signed in user using the userId
param. This will allow Frigade to track the user's across flows.
import { FrigadeProvider } from '@frigade/react-native';
const App = () => {
return (
<FrigadeProvider publicApiKey='<MY_PUBLIC_API_KEY>' userId='<OPTIONAL_USER_ID>'>
...
</FrigadeProvider>
);
};
Docs
The official docs are available at docs.frigade.com.
Get in touch
Questions? Comments? Suggestions? Join the Frigade Discord or visit
the Frigade website.