The FeedbackJar React Native SDK works in any Expo app — Expo Go, dev builds, and EAS. No native modules: it uses fetch, Platform, and Dimensions. You build the form; the SDK submits with device metadata.
app.feedbackjar.com → Settings → Widgets → copy your Widget ID npx expo install @feedbackjar/react-native-sdk → No config plugin or prebuild needed — it works in Expo Go. Requires React Native 0.70+.
import { FeedbackJar } from '@feedbackjar/react-native-sdk';
FeedbackJar.configure({ widgetId: 'your-widget-id' });
export default function App() {
return <RootNavigator />;
} const result = await FeedbackJar.submit(text);
if (result.ok) {
router.push('/feedback/thanks');
} else {
Alert.alert('Could not send', result.error.message);
} → Submissions are anonymous. OS version, screen size, locale, and timezone are attached automatically.
const result = await FeedbackJar.listFeedback({ limit: 20 });
if (result.ok) {
setPosts(result.value.posts);
} Sign up free, grab your Widget ID, and have the feedback widget running in your Expo app in 5 minutes.