🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

react-native-idle-timer

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-idle-timer

An Objective-C bridge that allows you to enable and disable the screen idle timer in your React Native app

1.0.1
Source
npm
Version published
Weekly downloads
5.7K
6.81%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-idle-timer

An Objective-C bridge that allows you to enable and disable the screen idle timer in your React Native app

Install

  • npm install react-native-idle-timer@latest --save
  • In the XCode's "Project navigator", right click on your project's Libraries folder ➜ Add Files to <...>
  • Go to node_modulesreact-native-idle-timer ➜ select the IdleTimerManager folder
  • Make sure IdleTimerManager.m is listed under 'Compile Sources' in your project's 'Build Phases' tab

Usage

  • In your React Native javascript code, bring in the native module:
var IdleTimerManager = require('NativeModules').IdleTimerManager;
  • To disable the idle timer on a specific view component:
componentWillMount() {
  IdleTimerManager.setIdleTimerDisabled(true);
}

componentWillUnmount() {
  IdleTimerManager.setIdleTimerDisabled(false);
}

Keywords

react-native

FAQs

Package last updated on 25 Aug 2015

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