Socket
Socket
Sign inDemoInstall

react-native-device

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-device

UIDevice wrapper for React Native


Version published
Weekly downloads
4
decreased by-85.71%
Maintainers
1
Weekly downloads
 
Created
Source

React Native Device

NPM Stats

A wrapper for the native iOS UIDevice & Android Build class allowing you to access device properties and screen dimensions. Currently only for React Native iOS, Android support in progress.

Installation (iOS)

First install the package to your project from NPM...

npm install react-native-device --save

Then within the package folder just add both the .h and .m classes to your project...

Methods

Device.isIpad()

The device model is of type iPad

Device.isIphone()

The device model is of type iPhone

Properties

Device.model

The device model, such as iPhone 5 or iPad Air - All model options

Device.deviceName

The device name, such as John Smith's iPhone

Device.systemName

The device OS name, such as iPhone OS

Device.systemVersion

The device OS version, such as 8.4

Example

'use strict';

var Device = require('react-native-device');

var ExampleApp = React.createClass({
  render: function() {
    if (Device.isIpad()) {
      // return iPad layout
    } else {
      // return iPhone layout
    }
  }
});

Keywords

FAQs

Package last updated on 26 Sep 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc