• This repository has been archived on 13/Sep/2020
  • Stars
    star
    2,213
  • Rank 20,835 (Top 0.5 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 9 years ago
  • Updated about 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Side menu component for React Native

Customizable side menu for react-native

iOS android

Content

Installation

npm install react-native-side-menu --save

Usage example

import SideMenu from 'react-native-side-menu'

class ContentView extends React.Component {
  render() {
    return (
      <View style={styles.container}>
        <Text style={styles.welcome}>
          Welcome to React Native!
        </Text>
        <Text style={styles.instructions}>
          To get started, edit index.ios.js
        </Text>
        <Text style={styles.instructions}>
          Press Cmd+R to reload,{'\n'}
          Cmd+Control+Z for dev menu
        </Text>
      </View>
    );
  }
}

class Application extends React.Component {
  render() {
    const menu = <Menu navigator={navigator}/>;

    return (
      <SideMenu menu={menu}>
        <ContentView/>
      </SideMenu>
    );
  }
}

Component props

prop default type description
menu inherited React.Component Menu component
isOpen false Boolean Props driven control over menu open state
openMenuOffset 2/3 of device screen width Number Content view left margin if menu is opened
hiddenMenuOffset none Number Content view left margin if menu is hidden
edgeHitWidth none Number Edge distance on content view to open side menu, defaults to 60
toleranceX none Number X axis tolerance
toleranceY none Number Y axis tolerance
disableGestures false Bool Disable whether the menu can be opened with gestures or not
onStartShould
SetResponderCapture
none Function Function that accepts event as an argument and specify if side-menu should react on the touch or not. Check https://facebook.github.io/react-native/docs/gesture-responder-system.html for more details
onChange none Function Callback on menu open/close. Is passed isOpen as an argument
onMove none Function Callback on menu move. Is passed left as an argument
onSliding none Function Callback when menu is sliding. It returns a decimal from 0 to 1 which represents the percentage of menu offset between hiddenMenuOffset and openMenuOffset.
menuPosition left String either 'left' or 'right'
animationFunction none (Function -> Object) Function that accept 2 arguments (prop, value) and return an object:
- prop you should use at the place you specify parameter to animate
- value you should use to specify the final value of prop
onAnimationComplete none (Function -> Void) Function that accept 1 optional argument (event):
- event you should this to capture the animation event after the animation has successfully completed
animationStyle none (Function -> Object) Function that accept 1 argument (value) and return an object:
- value you should use at the place you need current value of animated parameter (left offset of content view)
bounceBackOnOverdraw true boolean when true, content view will bounce back to openMenuOffset when dragged further
autoClosing true boolean When true, menu close automatically as soon as an event occurs

FAQ

ScrollView does not scroll to top on status bar press

On iPhone, the scroll-to-top gesture has no effect if there is more than one scroll view on-screen that has scrollsToTop set to true. Since it defaults to true in ReactNative, you have to set scrollsToTop={false} on your ScrollView inside Menu component in order to get it working as desired.

The swipe animation is extremely slow

Try disabling remote JS debugging (from developer menu on phone/VD)

My SideMenu contents are visible even when the side menu is hidden

Ensure that your main view has a background color applied

<Sidemenu menu={menu}>
<App style={{backgroundColor='white'}} />
</SideMenu>

Questions?

Feel free to contact me in twitter or create an issue

More Repositories

1

react-native-blur

React Native Blur component
TypeScript
3,754
star
2

react-native-navbar

Navbar component for React Native
JavaScript
1,894
star
3

browserify-react-live

React Live Patch for browserify
JavaScript
83
star
4

react-native-network-proxy

Network debugger (logger) for React Native apps
JavaScript
74
star
5

Reactive2015

Reactive 2015 Conference contest app
JavaScript
62
star
6

ReactNativeWithSwiftUITutorial

Supportive material for the tutorial about React Native and SwiftUI
Objective-C
61
star
7

react-native-list

FlatList, VirtualizedList, SectionList for React-Native < 0.43
JavaScript
44
star
8

react-native-uber-rides

🚗 React Native port for Uber Rides SDK
Swift
33
star
9

fflux

Flux-based architecture library with immutable data support
JavaScript
31
star
10

ExampleBridge

Objective-C
27
star
11

react-navigation-parser

Parser tool for react-navigation
JavaScript
24
star
12

navigator-redux

Navigator for React-Native, driven by redux
JavaScript
18
star
13

browserify-patch-server

Patch server for browserify
JavaScript
15
star
14

jest-styled-components-matcher

Jest matcher for styled components (React Native)
JavaScript
14
star
15

metro-bundler-ui

5
star
16

fflux-isomorphic-example

Example of usage fflux for creating isomorphic apps
JavaScript
3
star
17

schemify

TypeScript compiler for React Native CodeGen project
TypeScript
3
star
18

kureev.com

JavaScript
2
star
19

veloria

Veloria is a SQLite-based ORM that aims to bring prisma-like experience for React Native
TypeScript
2
star
20

go-rfcomm-server

Draft implementation of the server that accepts Bluetooth connections using RFCOMM protocol
Go
1
star
21

hello-github-actions

Dockerfile
1
star
22

github-actions-for-ci

JavaScript
1
star