$ npm install react-native-haptic --save
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜-react-native-haptic
and addReactNativeHaptic.xcodeproj
- In XCode, in the project navigator, select your project. Add
libReactNativeHaptic.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
import ReactNativeHaptic from 'react-native-haptic';
<TouchableHighlight style={styles.wrapper} onPress={() => ReactNativeHaptic.generate('notification')}>
I would suggest to run the example directly on your device, since chances are you won't feel the feedback in the simulator ;)
/**
* @static
* @method prepare
* @description Prepares the Taptic Engine (Awaken state). Usually used seconds before triggering a feedback.
* This is optional, mostly used when the feedback needs to be synced with sound.
*
*/
static prepare() {
ReactNativeHaptic.prepare();
}
/**
* @static
* @method Generate
* @description Triggers haptic feedback of type :type
* @param type Type of haptic feedback
*/
static generate(type: 'impact' | 'notification' | 'selection' | 'impactLight' | 'impactMedium' | 'impactHeavy' | 'notificationError' | ' notificationSuccess' | 'notificationWarning') {
ReactNativeHaptic.generate(type);
}