clac.js
import {Dimensions} from 'react-native'
const base_width = 411.42857142857144; // 根据当前写代码的手机宽度作为参照 必须是一个定值
export default function(size){
let {width} = Dimensions.get('window');
return size * width / base_width
}
clac.js
import {Dimensions} from 'react-native'
const base_width = 411.42857142857144; // 根据当前写代码的手机宽度作为参照 必须是一个定值
export default function(size){
let {width} = Dimensions.get('window');
return size * width / base_width
}