-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
68 lines (63 loc) · 1.97 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import React from 'react';
import {StatusBar} from 'react-native';
import {NavigationContainer} from '@react-navigation/native';
import {createStackNavigator} from '@react-navigation/stack';
import LoadingScreen from './src/screens/LoadingScreen';
import OnboardingScreen from './src/screens/OnboardingScreen';
import HomeScreen from './src/screens/HomeScreen/HomeScreen';
import DetailScreen from './src/screens/DetailScreen';
import colors from './src/utils/colors';
const Stack = createStackNavigator();
const App = () => {
return (
<NavigationContainer>
<StatusBar backgroundColor={colors.darkWhite} barStyle="dark-content" />
<Stack.Navigator initialRouteName="Loading">
<Stack.Screen
options={{headerShown: false}}
name="Loading"
component={LoadingScreen}
/>
<Stack.Screen
options={{headerShown: false, gestureEnabled: false}}
name="Onboarding"
component={OnboardingScreen}
/>
<Stack.Screen
name="Home"
options={{
headerTitleAlign: 'left',
headerTitleStyle: {
fontSize: 23,
fontWeight: 'bold',
color: colors.title,
},
headerStyle: {
shadowOffset: {height: 0, width: 0},
backgroundColor: colors.darkWhite,
elevation: 0,
},
headerTitle: 'My Notes',
gestureEnabled: false,
headerLeft: null,
}}
component={HomeScreen}
/>
<Stack.Screen
name="Detail"
options={{
headerBackTitleVisible: false,
headerTitle: '',
headerStyle: {
shadowOffset: {height: 0, width: 0},
backgroundColor: colors.white,
elevation: 0,
},
}}
component={DetailScreen}
/>
</Stack.Navigator>
</NavigationContainer>
);
};
export default App;