Socket
Socket
Sign inDemoInstall

@rexovolt/react-native-side-menu

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @rexovolt/react-native-side-menu

A simple customizable React Native component to create side menus.


Version published
Weekly downloads
3
decreased by-75%
Maintainers
1
Install size
22.5 kB
Created
Weekly downloads
 

Changelog

Source

v2.0.0

Breaking changes

  • Drop Flow support. Use TypeScript for type checking instead.

Bug fixes

  • Add the children prop to the TS type definitions.
  • General cleanup/updates.

Readme

Source

@rexovolt/react-native-side-menu

npm badge from shields.io

This package provides a customizable side menu component for React Native projects.

iOSAndroid

Content

  • Installation
  • Usage example
  • Component props
  • Questions?
  • Credits

Installation

npm install @rexovolt/react-native-side-menu --save

Usage example

import SideMenu from '@rexovolt/react-native-side-menu'
import {CatSelector}  from './YourMenuComponent'

const ContentView = () => {
  return (
    <View style={styles.container}>
      <Text style={styles.header}>
        kitty cat :3
      </Text>
      <Text style={styles.body}>
        meow!
      </Text>
    </View>
  );
}

const Application = () => {
  const menu = <CatSelector navigator={navigator}/>;

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

Component props

propdefaulttypedescription
menuinheritedReact.ComponentMenu component
isOpenfalseBooleanProps driven control over menu open state
openMenuOffset2/3 of device screen widthNumberContent view left margin if menu is opened
hiddenMenuOffsetnoneNumberContent view left margin if menu is hidden
edgeHitWidthnoneNumberEdge distance on content view to open side menu, defaults to 60
toleranceXnoneNumberX axis tolerance
toleranceYnoneNumberY axis tolerance
disableGesturesfalseBoolDisable whether the menu can be opened with gestures or not
onStartShould
SetResponderCapture
noneFunctionFunction 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
onChangenoneFunctionCallback on menu open/close. Is passed isOpen as an argument
onMovenoneFunctionCallback on menu move. Is passed left as an argument
onSlidingnoneFunctionCallback when menu is sliding. It returns a decimal from 0 to 1 which represents the percentage of menu offset between hiddenMenuOffset and openMenuOffset.
menuPositionleftStringeither 'left' or 'right'
animationFunctionnone(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
onAnimationCompletenone(Function -> Void)Function that accept 1 optional argument (event):
- event you should this to capture the animation event after the animation has successfully completed
animationStylenone(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)
bounceBackOnOverdrawtruebooleanwhen true, content view will bounce back to openMenuOffset when dragged further
autoClosingtruebooleanWhen true, menu close automatically as soon as an event occurs
allowOverlayPressPropagationfalsebooleanWhen true, press events on the overlay can be propagated to the buttons inside your page
overlayColortransparentstringPage overlay color when sidebar open
overlayOpacity1NumberPage overlay opacity when sidebar open
animateOverlayOpacitytruebooleanWhen true, the page overlay opacity is animated from 0 to overlayOpacity

FAQ/troubleshooting

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 open an issue.

Credits

This repository is a fork of a fork of a fork (talk about a mouthful!). I'd like to give my thanks and credit to the authors of/contributors to the following packages:

Keywords

FAQs

Last updated on 28 Nov 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc