Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@t2tx/react-native-universal-pedometer

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@t2tx/react-native-universal-pedometer

React Native universal pedometer. This is a fork from @JWWon/react-native-universal-pedometer.

latest
Source
npmnpm
Version
2.0.3
Version published
Maintainers
1
Created
Source

react-native-universal-pedometer

React Native pedometer support for iOS version 8.0 and higher and Android. The module is CMPedometer wrapper. More info about CMPedometer can be found in https://developer.apple.com/library/ios/documentation/CoreMotion/Reference/CMPedometer_class/

Example

https://github.com/t2tx/pedometer_example

Note

  • Currently typescript is supported.

Installation

  • npm install --save @t2tx/react-native-universal-pedometer

or yarn add @t2tx/react-native-universal-pedometer

  • cd ios && pod install && cd ..
iOS Configuration

add NSMotionUsageDescription on ios/<your-project>/info.plist

// info.plist
<dict>
	...
	<key>NSMotionUsageDescription</key>
	<string></string>
</dict>

General Usage

import Pedometer from '@t2tx/react-native-universal-pedometer';

or

var Pedometer = require('@t2tx/react-native-universal-pedometer');

Methods

Method NameArgumentsNotes
isStepCountingAvailablecallback: Callback
isDistanceAvailablecallback: Callback
isFloorCountingAvailablecallback: Callback
isPaceAvailablecallback: Callback
isCadenceAvailablecallback: Callback
startPedometerUpdatesFromDatedate: Date.getTime(), listener: Listenerstart tracking from current time
queryPedometerDataBetweenDatesstartDate: Date.getTime(), endDate: Date.getTime(), callback: QueryCallbackquery pedometer data from selected date to other selected date
stopPedometerUpdatesstop pedometer updates

Types

Type NameInterface
PedometerInterface{ startDate: nubmer; endDate: number; numberOfSteps: number; distance: number; }
Callback(error: string or null, avaliable: boolean) => any
Listener(data: PedometerInterface) => any
QueryCallback(error: string or null, data: PedometerInterface or null) => any

Keywords

react

FAQs

Package last updated on 10 Mar 2020

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