react native stack navigation with custom components files.

lets create a navigation in react native application using custom components files.


1. install expo-cli to create expo apps:

            npm install -g expo-cli@latest

2. install react-native-screens and react-native-safe-area-context:

            npm install @react-navigation/native

3. Installing dependencies into an Expo managed project

            npx expo install react-native-screens react-native-safe-area-context

4. create expo project named "navig":

            npx create-expo-app navig

5. Installing the native stack navigator library:

            
            npm install @react-navigation/native-stack


 file structure used in this example:


project_root/
├── src/
│   │
│   ├── Components/
│   │   │
│   │   ├── Login.js        // The file containing the Login component
│   │   └── OtherComponent.js  // Other components in your project
│   │
│   ├── App.js              


home component

import { Button, StyleSheet, Text, View } from 'react-native';
export default function Home(data) {
 
  return (
    <View>
      <Text>home screen</Text>
      <Button title='login' onPress={()=>data.navigation.navigate("Login")}/>
    </View>
  )
}


login component


import { Button, StyleSheet, Text, View } from 'react-native';
 
export default function Login(props)
{
  return (
    <View>
      <Text>login screen</Text>
      <Button title='home' onPress={()=>props.navigation.navigate("Home")}/>
    </View>
  )
}



App.js component

import { Button, StyleSheet, Text, View } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import Home from './Components/Home';
import Login from './Components/Login';


const Stack=createNativeStackNavigator()


export default function App() {
  return (
        <NavigationContainer>
            <Stack.Navigator>
                <Stack.Screen name='Login' component={Login}/>
                <Stack.Screen name='Home' component={Home}/>
             
            </Stack.Navigator>
        </NavigationContainer>
    );
}
const styles = StyleSheet.create({
  container: {
  },
});



0 Comments