检查`Drawer Sidebar`的渲染方法

时间:2017-07-18 12:54:04

标签: react-native react-navigation

我正在使用React-navigation模块,我创建了DrawerContent并且我得到了这个错误:
Check the render method of "Drawer Sidebar"
我该如何解决这个错误? photo

默认代码正常:
contentComponent: props => <ScrollView><DrawerItems {...props} /></ScrollView>

我的新代码不行:
contentComponent: DrawerContent

const DrawerContent = (props) => (<ScrollView><DrawerItems {...props} /></ScrollView>)

我也打开了这个问题:( https://github.com/react-community/react-navigation/issues/2175

2 个答案:

答案 0 :(得分:0)

解决了✔️
contentComponent: props => <DrawerContent {...props} />

答案 1 :(得分:0)

我用这个解决了:

contentComponent: props => <DrawerNavigatorItems {...this.props} />