1.0.3 • Published 3 years ago

rn-shake v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

rn-shake

📱 React Native useShake hook that helps detecting shake gesture with phone accelerometer.

📦 Installation

yarn add rn-shake react-native-sensors

🚀 Usage

  • The first argument of the hook is the callback function.
  • Second argument is the configuration object - All fields optional.
  • It is strongly recommended that you adjust the threshold value with experiments to match your needs.
import {useShake} from 'rn-shake';

useShake(
  () => {
    console.log('🐍 Shook Shook');
  },
  {
    threshold: 3,
    sensorUpdateInterval: 200,
    minimalTimeBetweenTriggers: 1000,
    isTriggerAfterShakes: true,
    resetDependencies: [],
  }
);
1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

1.0.3

3 years ago

0.1.4

6 years ago

0.1.0

6 years ago