1import {Dimensions} from 'react-native'; 2 3const windowWidth = Dimensions.get('window').width; 4const windowHeight = Dimensions.get('window').height; 5 6export default function (rpx: number) { 7 return (rpx / 750) * windowWidth; 8} 9 10export function vh(pct: number) { 11 return (pct / 100) * windowHeight; 12} 13