react-native-screen-support-orientation
v0.0.4
Published
React Native Method to get current Screen Orientation with its Height and Width in IOS and Android
Downloads
19
Maintainers
Readme
React Native Method to get current Screen Orientation with its Height and Width in IOS and Android
A react-native component for getting orientation of the screen and height, width of the screen according to its orientation .
Installation
npm i react-native-screen-support-orientation --save
Usage
import AppDimension from 'react-native-screen-support-orientation'Method to get the current Orientation, Width and Height of the screen.
AppDimension.getDimension((callback)=>{
alert(JSON.stringify(callback))
/** this.setState({height:callback.height,width:callback.width,orientation:callback.orientation})
**/
})
Callback arguments
| Prop | Type | Description |
|-----------------------------------|-------------|------------------------------------------------------------------------------------------------------------|
|orientation |String |Give the orientation of the screen (PORTRAIT or LANDSCAPE) .
|width |Number |Give the width of the screen according to the screen orientation .
|height |Number |Give the height of the screen according to the screen orientation .
