React Native
Getting started
Learn how to get started with FeatureBuddy for React Native
FeatureBuddy works with both bare React Native applications and Expo projects without requiring ejection or a development client.
It's built with TypeScript and has no external dependencies.
Requirements
- FeatureBuddy Account
- FeatureBuddy API Key, available in Settings > API Key
Quick start
Installation
Install FeatureBuddy by running one of the following commands in your terminal:
npm i @featurebuddy/react-native --save
Usage
You can easily render a component on the screen or in a modal.
import { Features } from "@featurebuddy/react-native";
const apiKey = "your-api-key";
export const FeedbackScreen = () => {
return <Features apiKey={apiKey} />;
};