我创建了一个新的 React Native 项目并在项目中安装 @shoutem/ui 并将 Shoutem UI 的示例组件包含到 React Native 应用程序中。
import React, { Component } from 'react';
import { AppRegistry } from 'react-native';
import { Examples } from '@shoutem/ui';
class HelloWorld extends Component {
render() {
return (
<Examples />
);
}
}
AppRegistry.registerComponent('HelloWorld', () => HelloWorld);
但是当我运行启动项目时,我得到“未知命名模块:'react/lib/NativeMethodsMixin'”错误。