-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathApp.js
34 lines (32 loc) · 879 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
29
30
31
32
33
34
import React from 'react';
import { createStackNavigator } from '@react-navigation/stack';
import FoodForm from './src/foodForm';
import FoodList from './src/foodList';
import { NavigationContainer } from '@react-navigation/native';
const Stack = createStackNavigator();
export default AppStack = () =>
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen
name="FoodForm"
component={FoodForm}
options={{
title: 'Cheetah Coding',
headerTintColor: 'orange',
headerStyle: {
backgroundColor: 'black'
}
}}
/>
<Stack.Screen
name="FoodList"
component={FoodList}
options={{
headerTintColor: 'orange',
headerStyle: {
backgroundColor: 'black'
}
}}
/>
</Stack.Navigator>
</NavigationContainer>