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

    Interface FeatureRequestDetailProps

    Props for configuring the FeatureRequestDetail modal view.

    <FeatureRequestDetail
    item={selectedItem}
    visible={isOpen}
    onClose={() => setIsOpen(false)}
    onVoteChange={(updated) => updateLocalItem(updated)}
    />
    interface FeatureRequestDetailProps {
        item: FeatureRequestItem;
        onClose: () => void;
        onVoteChange?: (updated: FeatureRequestItem) => void;
        visible: boolean;
    }
    Index

    The feature request item data model to render.

    onClose: () => void

    Callback invoked when the user taps the back button or requests modal dismissal.

    onVoteChange?: (updated: FeatureRequestItem) => void

    Optional callback notified whenever the user toggles an upvote inside the detail view.

    visible: boolean

    Whether the full-screen modal sheet is visible.