šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

react-native-sensor-step

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-sensor-step

TODO

1.0.4
latest
Source
npm
Version published
Weekly downloads
3
-57.14%
Maintainers
1
Weekly downloads
Ā 
Created
Source

react-native-sensor-step

Getting started

$ npm install react-native-sensor-step --save

Automatic installation (Android only)

  • React Native 0.60+

React Native <= 0.59

$ react-native link react-native-sensor-step

SensorType

TypeDescription
COUNTERTYPE_STEP_COUNTER
DETECTORTYPE_STEP_DETECTOR
MethodDescription
requestSensorPermissionNote: To allow an app to use this sensor on a device running Android 10 (API level 29) or higher, you must declare ACTIVITY_RECOGNITION privileges.
checkSensorPermissionACTIVITY_RECOGNITION Permission check.
startNumber of steps Event Listener, start
stopNumber of steps Event Listener, stop

Usage

import React, { useEffect, useState } from "react";
import { DeviceEventEmitter, Text, View } from "react-native";
import RNSensorStep, { SensorType } from "react-native-sensor-step";

const App = () => {
  const [stepCount, setStepCount] = useState(0);

  useEffect(() => {
    // you select sensor type COUNTER or DETECTOR
    // you set delay millisecond
    RNSensorStep.start(1000, SensorType.COUNTER);
    DeviceEventEmitter.addListener("StepCounter", async (data) => {
      setStepCount(data.steps);
    });
    return () => {
      RNSensorStep.stop();
    };
  }, []);

  return (
    <View style={styles.container}>
      <Text>{`stepCount : ${stepCount}`}</Text>
    </View>
  );
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: "center",
    alignItems: "center",
  },
});

export default App;

Keywords

react-native

FAQs

Package last updated on 08 Dec 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts