-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.js
More file actions
39 lines (36 loc) · 1.53 KB
/
Copy pathApp.js
File metadata and controls
39 lines (36 loc) · 1.53 KB
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
29
30
31
32
33
34
35
36
37
38
39
import { StatusBar } from "expo-status-bar";
import { StyleSheet, Text, View } from "react-native";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import LoadingScreen from "./src/screens/LoadingScreen";
import SettingScreen from "./src/screens/SettingScreen";
import HomeScreen from "./src/screens/HomeScreen";
import NotificationScreen from "./src/screens/NotificationsScreen";
import ProfileScreen from "./src/screens/ProfileScreen";
import SearchScreen from "./src/screens/SearchScreen";
import PackageScreen from "./src/screens/PackageScreen";
const Stack = createStackNavigator();
export default function App() {
//remove this if u want screenOptions={{ headerShown: false }}: in the development phase
return (
<NavigationContainer>
<Stack.Navigator initialRouteName="Loading">
<Stack.Screen name="Loading" component={LoadingScreen} />
<Stack.Screen name="Settings" component={SettingScreen} />
<Stack.Screen name="Home" component={HomeScreen} />
<Stack.Screen name="Notification" component={NotificationScreen} />
<Stack.Screen name="Profile" component={ProfileScreen} />
<Stack.Screen name="Search" component={SearchScreen} />
<Stack.Screen name="Package" component={PackageScreen} />
</Stack.Navigator>
</NavigationContainer>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center",
},
});