Gathering detailed insights and metrics for react-native-popup-menu
Gathering detailed insights and metrics for react-native-popup-menu
Gathering detailed insights and metrics for react-native-popup-menu
Gathering detailed insights and metrics for react-native-popup-menu
@react-native/popup-menu-android
PopupMenu for the Android platform
@floating-ui/react-native
Floating UI for React Native
@popupmenu/react-native-popup-menu
Provide a programmatically api for showing popup menu
fable-import-react-native-popup-menu
Fable bindings for react-native-popup-menu
npm install react-native-popup-menu
Typescript
Module System
Node Version
NPM Version
Compatibility with React 19
Updated on Jun 07, 2025
Compatiblity with RN 0.77
Updated on Mar 17, 2025
Back handler registration change
Updated on Aug 29, 2022
Fixes TS definition problem with React 18
Updated on Aug 11, 2022
Support for e2e testing
Updated on Dec 11, 2020
TS definition update
Updated on Jul 04, 2020
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
ISC License
1,520 Stars
402 Commits
253 Forks
16 Watchers
7 Branches
28 Contributors
Updated on Jul 09, 2025
Latest Version
0.18.0
Package Id
react-native-popup-menu@0.18.0
Unpacked Size
435.76 kB
Size
192.87 kB
File Count
33
NPM Version
10.9.2
Node Version
22.13.0
Published on
Jun 07, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
24
Extensible popup menu component for React Native for Android, iOS and (unofficially) UWP and react-native-web.
Features:
Community driven features:
We thank our community for maintaining features that goes over our scope.
Context Menu, Slide-in Menu | Popover |
---|---|
![]() | ![]() |
npm install react-native-popup-menu --save
If you are using older RN versions check our compatibility table.
Wrap your application inside MenuProvider
and then simply use Menu
component where you need it. Below you can find a simple example.
For more detailed documentation check API.
1// your entry point 2import { MenuProvider } from 'react-native-popup-menu'; 3 4export const App = () => ( 5 <MenuProvider> 6 <YourApp /> 7 </MenuProvider> 8); 9 10// somewhere in your app 11import { 12 Menu, 13 MenuOptions, 14 MenuOption, 15 MenuTrigger, 16} from 'react-native-popup-menu'; 17 18export const YourComponent = () => ( 19 <View> 20 <Text>Hello world!</Text> 21 <Menu> 22 <MenuTrigger text='Select action' /> 23 <MenuOptions> 24 <MenuOption onSelect={() => alert(`Save`)} text='Save' /> 25 <MenuOption onSelect={() => alert(`Delete`)} > 26 <Text style={{color: 'red'}}>Delete</Text> 27 </MenuOption> 28 <MenuOption onSelect={() => alert(`Not called`)} disabled={true} text='Disabled' /> 29 </MenuOptions> 30 </Menu> 31 </View> 32); 33
Contributions are welcome! Just open an issues with any idea or pull-request if it is no-brainer. Make sure all tests and linting rules pass.
We keep compatibility on best effort basis.
popup-menu version | min RN (React) version |
---|---|
0.13 | 0.55 (16.3.1) |
0.9 | 0.40 |
0.8 | 0.38 |
0.7 | 0.18 |
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
4 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 3
Reason
Found 7/25 approved changesets -- score normalized to 2
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
56 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More