Linking different screens in React Native - react-native

I wanted to open different screen if pressed the text. But unfortunately I don't understand this docs. Is there any other different option, like 'a href' in html? Or could anyone explain this to me?

Install react-navigation
Make edits to App.js
Wrap all of the JSX of App.js in a NavigationContainer with a Stack.Navigator nested under it
import { NavigationContainer } from '#react-navigation/native';
import { createStackNavigator } from '#react-navigation/stack';
const Stack = createStackNavigator();
return (
<NavigationContainer>
<Stack.Navigator>
{Your Screens}
</Stack.Navigator>
</NavigationContainer>
);
Now we set up screens. Each screen will use the StackScreen component and needs a screen name and the screen component itself
<Stack.Screen
name="Home"
component={HomeScreen}
/>
<Stack.Screen
name="Settings"
component={SettingsScreen}
/>
With this completed, each screen will now have a navigation prop. In the screen where you have your text button set your onPress to something like this:
<Button
title="Navigate to Home"
onPress={()=>props.navigation.navigate("Home")
/>
navigation.navigate identifies the screen you're trying to get to by using the name you provided in App.js Stack.Screen

Related

React Native Navigation: Another Navigator is already registered for this container

I want my component to render a TopTab Navigator on the top and also a Drawer Navigator at the same time.
So something like
<TopTab.Navigator>
<TopTab.Screen />
</TopTab.Navigator>
<Drawer.Navigator>
<Drawer.Screen />
</Drawer.Navigator>
However I'm getting an error of "Another navigator is already registered for this container. You likely have multiple navigators under a single "NavigationContainer" or "Screen" Make sure each navigator is under a separate "ScreenContainer"
Why dont you try using it like this, drawerNavigator holds as the main wrapper and inside it topTab
const HomeScreen = () => {
return(
<TopTab.Navigator>
<TopTab.Screen />
</TopTab.Navigator>
)
}
export default function App() {
return (
<NavigationContainer>
<Drawer.Navigator initialRouteName="Home">
<Drawer.Screen name="Home" component={HomeScreen} />
</Drawer.Navigator>
</NavigationContainer>
)
}
This should work, feel free for doubts
You have to set Tab navigator inside drawer navigator, you can search to get better solutions like "how we use multiple navigator in react native?"
visit below link
https://dev.to/easybuoy/combining-stack-tab-drawer-navigations-in-react-native-with-react-navigation-5-da

How to get rid of white flashes on navigation using #react-navigation/native and #react-navigation/native-stack

Whenever I navigate to another screen,the screen flashes white as the screen navigated to seems to fade in. I built the app to both have a light and dark mode; this would have been fine for light mode but in dark mode the white flash is annoying and I have no idea on how on how to get rid of it.
My App.js
import React from 'react'
import { NavigationContainer } from '#react-navigation/native'
import { createNativeStackNavigator } from '#react-navigation/native-stack'
import LScreen from './src/screens/LScreen'
import HScreen from './src/screens/HScreen'
import CPScreen from './src/screens/CPScreen'
export default function App() {
const Stack = createNativeStackNavigator()
return (
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen name="LScreen" component={LScreen} />
<Stack.Screen name="HScreen" component={HScreen} />
<Stack.Screen name="CPScreen" component={CPScreen} />
</Stack.Navigator>
</NavigationContainer>
)
}
Can someone kindly advise on how I can overcome this challenge or an alternative to this navigation method
I created a similar project to test and here is the solution I came up with.
Try to use:
import {createStackNavigator} from '#react-navigation/stack'
Rather than:
import { createNativeStackNavigator } from '#react-navigation/native-stack'
With yours, I was seeing the same delay/white between screens. When I changed to the other, I saw no white screen. I tested this with a yellow and black background.
I created a basic light/dark theme using React Native Paper, and there were no issues there either.
Import DarkTheme from "#react-navigation/native" and set the theme prop on NavigationContainer to DarkTheme
Code below
<NavigationContainer theme={DarkTheme}>
<Stack.Navigator>
<Stack.Screen name="LScreen" component={LScreen} />
<Stack.Screen name="HScreen" component={HScreen} />
<Stack.Screen name="CPScreen" component={CPScreen} />
</Stack.Navigator>
</NavigationContainer>
Just remove animation during navigation. That's all!

initial Route name not working in React native expo project

I am making an instagram clone. i have made it upto navigation. but in my expo app the screen which is added 1st after Stack.Navigator (in below case it is homescreen) shows up on th app, but if i change the initial route name to the second screen it has no effect and still the homescreen shows up. However if i add the 2nd screen before the 1st screen in the code below the 2nd screen shows up.
initial route name seems to have no effect.
import Homescreen from './screens/Homescreen';
import NewPostScreen from './screens/NewPostScreen';
import { createStackNavigator } from '#react-navigation/stack';
import { NavigationContainer } from '#react-navigation/native';
const Stack = createStackNavigator();
export default function App() {
return (
<NavigationContainer>
<Stack.Navigator initialRoutName="1" screenOptions={{ headerShown: false }}>
<Stack.Screen name="1" component={Homescreen} options={{ title: 'Home' }} />
<Stack.Screen name="2" component={NewPostScreen} />
</Stack.Navigator>
</NavigationContainer>
);
}
The prop name is wrong. The right name is initialRouteName. Please, rename it.

react native navigate between screen

I have a project in react native in which I wanted to implement a feature.
I have three screens
slash screen
login screen
home screen
the slash screens last 1 second and leave on the home screen while the number of times the app has been opened does not exceed 3 times.
otherwise we display the login screen to ask for a password
About how to make the splash screen last 1 second, on Splash component, put an useEffect like this:
function Splash({ navigation }) {
useEffect(() => setTimeout(navigation.navigate('Home')),[]);
return (
<View>
<Image />
</View>
);
}
About conditional first screen when open the app, you can pass initialRouteName as a prop of Stack.Navigator:
import { createStackNavigator } from '#react-navigation/stack';
const Stack = createStackNavigator();
function App() {
return (
<Stack.Navigator initialRouteName={times < 3 ? Slash : Login}>
<Stack.Screen name="Slash" component={Slash} />
<Stack.Screen name="Home" component={Home} />
<Stack.Screen name="Login" component={Login} />
</Stack.Navigator>
);
}
Note: my examples above use StackNavigator and on React Navigation v6, it works the same as TabNavigator and other versions of React Navigation.

How do I navigate to another screen from a screen opened by drawer in react native?

I want to navigate like this (it was working fine when I had not made the drawer):
<Button onPress={() => this.props.navigation.navigate('Projects')}></Button>
But after adding the drawer, and on pressing button I am getting an error like this:
console.error: The action 'NAVIGATE' with payload '{"name":"Projects"}' was not handled by any navigator.
This is my drawer code:
const Drawer = createDrawerNavigator();
function MyDrawer() {
return (
<Drawer.Navigator>
<Drawer.Screen name="Home" component={AccountantScreen} />
<Drawer.Screen name="My Account" component={MyAccountScreen} />
</Drawer.Navigator>
);
}
export default function DrawerLeft() {
return (
<NavigationContainer>
<MyDrawer />
</NavigationContainer>
);
}
This is my App.js:
import ProjectsScreen from './screens/Accountant/ProjectsScreen';
import { createSwitchNavigator, createAppContainer } from 'react-navigation';
const FirstNavGroup = createSwitchNavigator({
Projects: {
screen: ProjectsScreen
},
export default createAppContainer(FirstNavGroup)
How do I navigate to the Projects page?
You cannot mix react-navigation v4 with v5:
Drawer.Navigator is using v5 syntax, and createSwitchNavigator does not exist anymore.
You are mixing v4 and v5 of React-Navigation.
createAppContainer is from v4
NavigationContainer is from v5
I would suggest you to fully switch to v5. It should fix your problem.
I don't understand why you need switch navigator. In your situation, you can use stack navigator.
Here's the example: https://reactnavigation.org/docs/stack-navigator