react native navigation manu code example

Example 1: navigation in react native

import { useNavigation } from '@react-navigation/native';

const navigation = useNavigation();
navigation.navigate('WallScreen')

Example 2: react native navigation

import * as React from 'react';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';

const Stack = createStackNavigator();

const MyStack = () => {
  return (
    <NavigationContainer>
      <Stack.Navigator>
        <Stack.Screen
          name="Home"
          component={HomeScreen}
          options={{ title: 'Welcome' }}
        />
        <Stack.Screen name="Profile" component={ProfileScreen} />
      </Stack.Navigator>
    </NavigationContainer>
  );
};

Tags:

Misc Example