forked from mattcalwu/healthy-foodies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
32 lines (28 loc) · 1.23 KB
/
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
29
30
31
32
import * as React from 'react';
import HomeScreen from './screens/HomeScreen';
import LoginScreen from './screens/LoginScreen';
import RegistrationScreen from './screens/RegistrationScreen';
import { Text, View } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import InformationView from './components/InformationView';
import ProfileScreen from './screens/ProfileScreen';
import FavoritesScreen from './screens/FavoritesScreen';
export default function App() {
const Stack = createNativeStackNavigator();
const screenOptions = {
headerShown: false,
};
return (
<NavigationContainer>
<Stack.Navigator initialRouteName="Home" screenOptions={screenOptions}>
<Stack.Screen name="Home" component={HomeScreen} />
<Stack.Screen name="Login" component={LoginScreen}/>
<Stack.Screen name="Registration" component={RegistrationScreen}/>
<Stack.Screen name="InformationView" component={InformationView}/>
<Stack.Screen name="Profile" component={ProfileScreen}/>
<Stack.Screen name="Favorites" component={FavoritesScreen}/>
</Stack.Navigator>
</NavigationContainer>
);
}