1import {Dimensions} from 'react-native'; 2 3const windowWidth = Dimensions.get('window').width; 4 5export default function (rpx: number) { 6 return (rpx / 750) * windowWidth; 7} 8
1import {Dimensions} from 'react-native'; 2 3const windowWidth = Dimensions.get('window').width; 4 5export default function (rpx: number) { 6 return (rpx / 750) * windowWidth; 7} 8