我正在使用React-navigation模块,我创建了DrawerContent
并且我得到了这个错误:
Check the render method of "Drawer Sidebar"
我该如何解决这个错误?
默认代码正常:
contentComponent: props => <ScrollView><DrawerItems {...props} /></ScrollView>
我的新代码不行:
contentComponent: DrawerContent
和
const DrawerContent = (props) => (<ScrollView><DrawerItems {...props} /></ScrollView>)
我也打开了这个问题:( https://github.com/react-community/react-navigation/issues/2175)
答案 0 :(得分:0)
解决了✔️
contentComponent: props => <DrawerContent {...props} />
答案 1 :(得分:0)
我用这个解决了:
contentComponent: props => <DrawerNavigatorItems {...this.props} />