Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法在 Google Pixel XL 和 2 XL 中渲染乐天动画。但是我手头没有那个设备,有人知道反应原生单元的宽度和高度吗?或者你如何检测这些设备?
您可以通过从 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}}>