@cake-fxd/rn-case
Version:
ReactNative Case
1 lines • 527 B
JavaScript
;Object.defineProperty(exports,"__esModule",{value:true});exports["default"]=px2dp;var _reactNative=require("react-native");var UIWidth=750;var UIHeight=1334;var UIRatio=1334/750;var deviceWidth=_reactNative.Dimensions.get('window').width;var deviceHeight=_reactNative.Dimensions.get('window').height;function getSafeScale(){var safeHeight=deviceWidth*UIRatio;if(safeHeight>deviceHeight){return deviceHeight/UIHeight;}else{return deviceWidth/UIWidth;}}function px2dp(UIElementPx){return UIElementPx*getSafeScale();}