Navigator has been remove from this package报错

来源:互联网 发布:凤凰卫视的立场 知乎 编辑:程序博客网 时间:2024/06/05 15:19

react-native 使用navigator报错;
报错:Navigator is deprecated and has been removed from this package. It can now be installed and imported fromreact-native-deprecated-custom-componentsinstead ofreact-native. Learn about alternative navigation solutions at http://facebook.github.io/react-native/docs/navigation.html`

这是因为版本升级到0.43以上的话,Navigator不能直接从react-native里面获取了,

解决方案:

npm install react-native-deprecated-custom-components –save

然后在引用的地方
import {Navigator}
from ‘react-native-deprecated-custom-components’

原来引用为import {Navigator} from ‘react-native’

阅读全文
0 0
原创粉丝点击