document authentication flow
在本文档中,如果[ERROR] Runtime.ImportModuleError: Unable to import module 'main': No module named 'regex._regex'
为isSignIn
,它将导航到true
。如果Home
是isSignIn
,它将导航到false
要更改SignIn
中isSignIn
的值怎么办,这是我的代码
HomeScreen
如何更改const App=()=>{
const [isLogin, setIsLogin]=useState(false)
return (
<NavigationContainer>
{isLogin?
<tabStack.Navigator>
<tabStack.Screen name="home" component={HomeScreen}/>
</tabStack.Navigator>
:
<Stack.Navigator screenOptions={{headerTitleAlign:'center'}}>
<Stack.Screen name="login" component={LoginScreen} options={{headerShown:false, setIsLogin:setIsLogin}} setIsLogin={setIsLogin}/>
<Stack.Screen name="register" component={RegisterScreen} options={{headerShown:false}}/>
</Stack.Navigator>
}
</NavigationContainer>
)
}
AppRegistry.registerComponent(appName, () => App);
中的isLogin
答案 0 :(得分:0)
我使用redux,如果您有任何疑问,可以在gitlab上找到有关身份验证的完整项目。