I am learnin React Native and trying to build a small application. I am using below navigation to show login screen to user (if not logged in) or other tabs (if logged in)..
{isLoggedIn == null
? <Stack.Navigator>
<Stack.Screen
name="Login"
options={{headerShown: false}}
component={Login}
/>
</Stack.Navigator>
: <Tab.Navigator>
<Tab.Screen
name="Home"
.......
........ rest code
However this is working fine. But now how can I refresh the complete window (after login) and show the bottom tab navigation ?