Getting started
FeatureBuddy provides an easy way to collect feedback from your users and build a better product.
Featurebuddy can be used in bare React Native applications as well as in Expo without ejecting or development client.
Requirements
- FeatureBuddy Account
- FeatureBuddy API Key, available in Settings > API Key
Quick start
Installing
Install Featurebuddy by running the following command in your terminal:
npm install @featurebuddy/react-native --save
pnpm add @featurebuddy/react-native
yarn add @featurebuddy/react-native
Base usage
import { Features } from "@featurebuddy/react-native";
const apiKey = "your-api-key";
export const FeedbackScreen = () => { return <Features apiKey={apiKey} />;};