反映Google Pixel XL和2 XL的原生尺寸

时间:2018-01-29 13:51:37

标签: react-native height width dimensions google-pixel

我在Google Pixel XL和2 XL中渲染lottie动画时遇到问题。但我手边没有这个设备,有人知道反应原生单位的宽度和高度吗?或者你如何检测这些设备?

1 个答案:

答案 0 :(得分:0)

您可以通过从react-native包本身导入 Dimensions 来实现,如下所示

import { Dimensions } from 'react-native';

const window = Dimensions.get('window');
const screenHeight = window.height;
const screenWidth = window.width;

并在任何元素中适当使用

<View style={{height: screenHeight - 80}}>