Used to collect feedback from your users and send it to your Feeed dashboard.
Install following expo dependencies:
expo install @feeed/react-native react-native-gesture-handler react-native-reanimated react-native-safe-area-context expo-device expo-constants expo-applicationInstall following dependencies:
yarn add @feeed/react-native react-native-gesture-handler react-native-reanimated react-native-safe-area-context react-native-device-infoPlease follow the official documentation of those libraries on how to link them correctly.
import { FeedbackWidgetProvider, FeedbackWidget } from '@feeed/react-native';
import { SafeAreaProvider } from 'react-native-safe-area-context';
<SafeAreaProvider>
<FeedbackWidgetProvider>
/* Your app content */
<FeedbackWidget projectId="[projectId]" />
</FeedbackWidgetProvider>
</SafeAreaProvider>;
//open the widget from anywhere in your app
const { open } = useFeedback();MIT
Made with create-react-native-library