### Project Setup and Development Commands Source: https://github.com/react-native-menu/menu/blob/master/CONTRIBUTING.md Commands to bootstrap the project, start the development server, and run the example app on Android and iOS. Also includes commands for type checking and linting. ```sh yarn bootstrap yarn start yarn android yarn ios yarn typescript yarn lint yarn lint --fix yarn test ``` -------------------------------- ### Install with yarn Source: https://github.com/react-native-menu/menu/blob/master/README.md Installs the @react-native-menu/menu package using yarn. ```sh yarn add @react-native-menu/menu ``` -------------------------------- ### Basic Usage Example Source: https://github.com/react-native-menu/menu/blob/master/README.md Demonstrates the basic usage of the MenuView component in React Native, including defining menu actions, handling presses, and using a ref for Android-specific functionality. ```jsx import { MenuView, MenuComponentRef } from '@react-native-menu/menu'; // ... const App = () => { const menuRef = useRef(null); return (