无法找到变量:尺寸

时间:2017-11-05 12:49:10

标签: react-native

当我尝试使用时:

const {width, height} = Dimensions.get('window');

在本机组件的反应中,我得到了一个前所未有的奇怪错误:

无法找到变量:尺寸

screenshot of the error

以前有人面对这个问题吗?

"dependencies": {
"expo": "^22.0.0",
"react": "16.0.0-beta.5",
"react-native": "https://github.com/expo/react-native/archive/sdk-22.0.2.tar.gz"

},

1 个答案:

答案 0 :(得分:13)

修复它...我的错误,我应该从反应原生维度导入。

import {Dimensions} from 'react-native';