react-native-menu-hom
v1.0.5
Published
Menu
Downloads
5
Readme
react-native-material-menu ·
Pure JavaScript material menu component for React Native.
Install
npm install --save react-native-material-menu
or
yarn add react-native-material-menu
Usage example
import React from 'react';
import { View, Text } from 'react-native';
import Menu, { MenuItem, MenuDivider } from 'react-native-material-menu';
class App extends React.PureComponent {
_menu = null;
setMenuRef = ref => {
this._menu = ref;
};
hideMenu = () => {
this._menu.hide();
};
showMenu = () => {
this._menu.show();
};
render() {
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Menu
ref={this.setMenuRef}
button={<Text onPress={this.showMenu}>Show menu</Text>}
>
<MenuItem onPress={this.hideMenu}>Menu item 1</MenuItem>
<MenuItem onPress={this.hideMenu}>Menu item 2</MenuItem>
<MenuItem onPress={this.hideMenu} disabled>
Menu item 3
</MenuItem>
<MenuDivider />
<MenuItem onPress={this.hideMenu}>Menu item 4</MenuItem>
</Menu>
</View>
);
}
}
export default App;
Menu
Properties
| name | description | type | default | | :------- | :------------------------------------- | -------: | :------ | | children | Components rendered in menu (required) | Node | - | | button | Button component (required) | Node | - | | style | Menu style | Style | - | | onHidden | Callback when menu has become hidden | Function | - |
Methods
| name | description | | :----- | :---------- | | show() | Shows menu | | hide() | Hides menu |
MenuItem
Properties
| name | description | type | default | | :---------------- | :----------------------- | -----: | :-------- | | children | Rendered text (required) | String | - | | disabled | Disabled flag | Bool | false | | disabledTextColor | Disabled text color | String | "#BDBDBD" | | onPress | Called function on press | Func | - | | style | Container style | Style | - | | textStyle | Text style | Style | - | | underlayColor | Pressed color | String | "#E0E0E0" |
MenuDivider
Properties
| name | description | type | default | | :---- | :---------- | -----: | :----------------- | | color | Line color | String | "rgba(0,0,0,0.12)" |
License
MIT License. © Maksim Milyutin 2017