我有带有条件渲染的路由器。
const {
checkedSignIn,
isSignedIn,
redirectTo
} = this.props.screenProps;
const navigation = this.props.navigation;
if (isSignedIn) {
const obj = Object.assign({}, this.props, this.props.screenProps);
return (
<DashboardTabComponent
//navigation={navigation}
// screenProps={this.props.screenProps}
screenProps={obj}
/>
);
} else {
return (
<HomeScreen
navigation={navigation}
screenProps={this.props.screenProps}
/>
);
}
内部&#39; DashboardTabComponent&#39;在其中一个选项卡中有按钮,当我按下退出按钮时,它应重新渲染此组件,以便它可以显示主屏幕。