react-native-menu / menu

UIMenu Component for React Native
MIT License
997 stars 59 forks source link

feat(android): add show method to MenuView component #954

Closed batuhanoztrk closed 3 weeks ago

batuhanoztrk commented 3 weeks ago

Add Imperative Menu Control for Android

Changes

Implementation Details

Example Usage

const menuRef = useRef<MenuComponentRef>(null);
// Show menu programmatically
menuRef.current?.show();
// In JSX
<MenuView
    ref={menuRef}
    title="Menu Title"
    actions={...}
/>

Testing

Notes