React native:组件没有从渲染中返回任何内容(UiKitten)



我有这个问题,我的代码运行良好,但如果我放入Accessory Right or Left,我会得到错误Nothing was returned from the render。在其他屏幕上它工作得很好,但在这个屏幕上它是不可能的。有些事情我真的不理解UIKItten。谢谢你的帮助。

userChange = () =>  {
this.state.navigation.navigate('Login', {noAutoConnect : true});
}
Disconnect = () => {
<TopNavigationAction icon={Quit} onPress={this.userChange}/>
}

render() {    
return (
<>
<TopNavigation style={{ borderWidth: 1 }} title='Acceuil' alignment='center' accessoryLeft = {this.Disconnect}  />
<View style = {style.lay}>
<Button size = "giant" onPress = {this.navigateArticles} status = "danger"><Text>Accéder à mes Pdf</Text></Button>
</View>
</>
);
}

Disconnect函数中添加return

Disconnect = () => {
return <TopNavigationAction icon={Quit} onPress={this.userChange}/>
}

相关内容

最新更新