Skip to content

wamphlett/react-native-options-menu

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-native-options-menu

A native looking options dialog for IOS, and Android and Web.

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.

Ios Screenshot:

Screenshot

Android Screenshot:

Screenshot

About

A native looking options dialog for IOS, Android, and Web

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%