Features
-
User Feedback Widget Beta (#4435)
To collect user feedback from inside your application call
Sentry.showFeedbackWidget()
.import Sentry from "@sentry/react-native"; Sentry.showFeedbackWidget(); Sentry.wrap(RootComponent);
To change the default options add
Sentry.feedbackIntegration()
.import Sentry from "@sentry/react-native"; import * as ImagePicker from 'expo-image-picker'; Sentry.init({ integrations: [ Sentry.feedbackIntegration({ imagePicker: ImagePicker, showName: true, showEmail: true, }), ], });
To learn more about the available configuration options visit the documentation.