New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-native-options-menu

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-options-menu

A native looking options dialog for Ios, Android and Web

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
79
decreased by-45.89%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-options-menu

A native looking options dialog for IOS, and Android (Web coming soon)

To Download: run yarn add react-native-options-menu.

Usage example:

                import OptionsMenu from "react-native-options-menu";
                const MoreIcon = require("../../assets/more/more.png");

                 <OptionsMenu
                    button={MoreIcon}
                    buttonStyle={{ width: 32, height: 8, margin: 7.5, resizeMode: "contain" }}
                    destructiveIndex={1}
                    options={["Edit", "Delete", "Cancel"]}
                    actions={
                    [this.sharePost, this.deletePost, null]
                    }
                   />
                       
                       

Note that button is a required prop (pass in a png of the desired button).

Destructive index in an IOS only prop. It will appear as a red index.

Options: an array of strings that will be displayed in the menu.

Actions: an array of functions to be executed for every menu item. Note that the orders of options an actions have to match.

Screenshot

Screenshot

Keywords

FAQs

Package last updated on 28 Jun 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc