-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
40 lines (37 loc) · 1.02 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
33
34
35
36
37
38
39
40
import {NavigationContainer} from '@react-navigation/native';
import {createStackNavigator} from '@react-navigation/stack';
import React from 'react';
import 'react-native-gesture-handler';
import {Provider} from 'react-redux';
import Home from './Screens/Home';
import NewQuote from './Screens/NewQuote';
import GlobalColors from './src/assets/GlobalColors';
import {store} from './Store';
export default RootApp = () => {
return (
<Provider store={store}>
<RootComponent />
</Provider>
);
};
const Stack = createStackNavigator();
const ScreenOptions = {
headerStyle: {
backgroundColor: GlobalColors.background,
},
headerTintColor: '#fff',
};
const RootComponent = () => {
return (
<NavigationContainer>
<Stack.Navigator screenOptions={ScreenOptions}>
<Stack.Screen name="Home" component={Home} />
<Stack.Screen
name="New Quote"
component={NewQuote}
options={{headerShown: false}}
/>
</Stack.Navigator>
</NavigationContainer>
);
};