React Native Device
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
The device model is of type iPad
Device
The device model is of type iPhone
Properties
Devicemodel
The device model, such as iPhone 5
or iPad Air
- All model options
DevicedeviceName
The device name, such as John Smith's iPhone
DevicesystemName
The device OS name, such as iPhone OS
DevicesystemVersion
The device OS version, such as 8.4
Example
'use strict'; var Device = ; var ExampleApp = React;