react native module to count steps
npm install react-native-pedometer-ios-android
import Pedometer from "react-native-pedometer";
// ...
Pedometer.isSupported().then((result) => {
if (result) {
console.log('Sensor TYPE_STEP_COUNTER is supported on this device');
const myModuleEvt = new NativeEventEmitter(NativeModules.Pedometer);
myModuleEvt.addListener('StepCounter', (data) => {
console.log('STEPS', data.steps);
});
Pedometer.startStepCounter();
} else {
console.log('Sensor TYPE_STEP_COUNTER is not supported on this device');
}
});
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT