计算公式
手机中元素的宽度 = 手机屏幕宽度 * 元素宽度 / 设计稿宽度
工具类 utils.js
代码片段
import { Dimensions } from 'react-native';
// 屏幕宽度
export const screenWidth = Dimensions.get('window').width;
// 屏幕高度
export const screenHeight = Dimensions.get('window').height;
// px转dp
export const pxToDp = (elePx) => screenWidth * elePx / 375;
网友评论