Add the shake event on your React Native app, giving to users improved usability. Enjoy! (works only on real device)
$ npm install react-native-shake-event --save
react-native link react-native-shake-event
- Add the
RNShakeEvent.xcodeproj
file to your Xcode project Demo; - Add the
Products/libRNShakeEvent.a
file to Build Phases Demo.
This step is described here: Linking Libraries.
react-native link react-native-shake-event
import RNShakeEvent from 'react-native-shake-event';
class MyComponent extends React.Component {
componentWillMount() {
RNShakeEvent.addEventListener('shake', () => {
console.log('Device shake!');
});
}
componentWillUnmount() {
RNShakeEvent.removeEventListener('shake');
}
}
Start listening the shake event and handle a callback function.
Stop to listening the shake event, and is recommended to prevent memory leak.
- On debug mode this event also handle the DevMenu, but works fine on production.
- Submit here;
MIT