react-native-dev-menu-on-touch

Open dev menu with 3 fingers touch instead of shake.

Usage no npm install needed!

<script type="module">
  import reactNativeDevMenuOnTouch from 'https://cdn.skypack.dev/react-native-dev-menu-on-touch';
</script>

README

react-native-dev-menu-on-touch

npm

Open dev menu with 3 fingers touch instead of shake.

shake

when you want to reload the app

Why?

It's annoying to shake real device every time you need dev menu. Also - it looks quite awkward if you have co-workers sitting next to you and you shake your phone every 2 minutes.

How to use

Wrap entire app inside this component

import DevMenuOnTouch from 'react-native-dev-menu-on-touch';
// or:  import { DevMenuOnTouch } from 'react-native-dev-menu-on-touch'

class YourRootApp extends Component {
  render() {
    return (
      <DevMenuOnTouch>
        <YourApp />
      </DevMenuOnTouch>
    );
  }
}

or use with higher order component

import { withDevMenuOnTouch } from 'react-native-dev-menu-on-touch';
const YourAppRoot = withDevMenuOnTouch(YourApp);

Notes