github getsentry/sentry-react-native 6.9.0

one day ago

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.

Don't miss a new sentry-react-native release

NewReleases is sending notifications on new releases.