Constants
Values
Values | Description |
---|---|
isAndroid | Device is Android |
isIOS | Device is iOS |
screenWidth | Device screen width |
screenHeight | Device screen height |
isSmallScreen | Device has small screen. If device is an Android, screen width is <= 360. If device is an iOS, screen width is <= 320. |
isShortScreen | Device screen height is <= 600. |
statusBarHeight | Device status bar height. |
Usage
isAndroid
import {Constants} from 'react-native-ui-lib';
if(Constants.isAndroid){
//render Android View
} else {
//render iOS View
}