-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
28 lines (26 loc) · 822 Bytes
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import React from "react";
import { StyleSheet, Text } from "react-native";
import HomeScreen from "./Screens/HomeScreen";
import Detail from "./Screens/Detail";
import { NavigationContainer } from "@react-navigation/native";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
//Create a Stack object
const Stack = createNativeStackNavigator();
export default function App() {
return (
<NavigationContainer>
<Stack.Navigator>
{/*This is the Home screen*/}
<Stack.Screen name="Home" component={HomeScreen} />
{/*This is the Detail screen*/}
<Stack.Screen name="Detail" component={Detail} />
</Stack.Navigator>
</NavigationContainer>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
},
});