CupThread React Native & Expo SDK - v0.1.0
    Preparing search index...

    Function FeedbackComposer

    • In-app feedback and bug report composer component supporting title, description, contact email, attachments, and metadata submission.

      Parameters

      Returns Element

      import React, { useState } from 'react';
      import { Button } from 'react-native';
      import { FeedbackComposer } from '@cupthread/react-native';

      export function HelpMenu() {
      const [showFeedback, setShowFeedback] = useState(false);

      return (
      <>
      <Button title="Send Feedback" onPress={() => setShowFeedback(true)} />
      <FeedbackComposer
      visible={showFeedback}
      onClose={() => setShowFeedback(false)}
      />
      </>
      );
      }