Easily add native menubar (NSMenu
) to your React Native MacOS App.
Warning
This library supports only react-native-macos
yarn add react-native-menubar-extra
# or ---
npm install react-native-menubar-extra
cd macos && pod install
import { MenuBarExtraItem, MenubarExtraView } from 'react-native-menubar-extra';
const MenuBar = () => {
return (
<MenubarExtraView icon="car">
<MenuBarExtraItem
title="Item 1"
onItemPress={() => {
console.log('Item pressed');
}}
/>
</MenubarExtraView>
);
};
For more advanced example check out the example folder.
Container view that sets up root menu.
Prop | Description |
---|---|
title |
Title that will appear next to icon in system status bar. |
icon |
Name of SF Symbol as string that will appear in system status bar. |
Important: Don't pass other types of components as children as it will break the indexing in the menu.
Prop | Description |
---|---|
title |
The menu item's title |
icon |
Name of SF Symbol as string that will be rendered next to item's title. |
onItemClick |
Callback that is called after clicking on menu item. |
keyEquivalent |
The menu item’s unmodified key equivalent. For example: "1" or "A". |
keyEquivalentModifierMask |
The menu item’s keyboard equivalent modifiers. Default: COMMAND |
Separator displayed between items. Needs to have at least one item above and below.
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library