FeedbackComposerProps configuring visibility, callbacks, and initial values.
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)}
/>
</>
);
}
In-app feedback and bug report composer component supporting title, description, contact email, attachments, and metadata submission.