Skip to content

sendbird/react-native-touch-reload

Repository files navigation

react-native-touch-reload

Don't shake 👋 ! Just touch 👈
this project inspired from https://github.com/pie6k/react-native-dev-menu-on-touch

Installation

npm install sendbird/react-native-touch-reload
yarn add sendbird/react-native-touch-reload

Usage

Component

import { TouchReload } from 'react-native-touch-reload'; const ReloadableApp = () => { if (!__DEV__) return <App />; return ( <TouchReload DEFAULT_VISIBLE={boolean} ACTIVE_TOUCHES={number}> <App /> </TouchReload> ); }; AppRegistry.registerComponent(appName, () => ReloadableApp);

HoC

import { withTouchReload } from 'react-native-touch-reload'; const ReloadableApp = withTouchReload(App, DEFAULT_VISIBLE?, ACTIVE_TOUCHES?); AppRegistry.registerComponent(appName, () => ReloadableApp);

Props

props required default
DEFAULT_VISIBLE false false
ACTIVE_TOUCHES false 3

About

reload helper for react-native

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published