-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
60 lines (56 loc) · 1.96 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
// In App.js in a new project
import * as React from 'react';
import { View, Text, StatusBar } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import Splash from './screens/landing/splash';
import Landingscreen from './screens/landing/landingscreen';
import Signin from './screens/auth/signin';
import Signup from './screens/auth/signup';
import Homepage from './screens/home/homepage';
import Home from './screens/home';
const Stack = createNativeStackNavigator();
function App() {
return (
<NavigationContainer>
<StatusBar style="light" backgroundColor="dodgerblue"/>
<Stack.Navigator>
<Stack.Screen name="Home" component={Splash} options={{headerShown: false,}}/>
<Stack.Screen name="Easy Routes" component={Home} options={{ headerTitleStyle:{
color: 'white',
fontFamily: 'monospace',
fontSize: 25,
alignItems: 'center',
justifyContents: 'center'
}, headerTitleAlign: "center", headerStyle:{
backgroundColor: 'dodgerblue'
}}} />
<Stack.Screen name='Signup' component={Signup} options={{
title: 'Signup',
headerStyle: {
backgroundColor: 'dodgerblue',
},
headerTintColor: '#fff',
headerTitleStyle: {
fontFamily: 'monospace',
fontSize: 30,
},
}} />
<Stack.Screen name='Signin' component={Signin} options={{
title: 'Signin',
headerStyle: {
backgroundColor: 'dodgerblue',
},
headerTintColor: '#fff',
headerTitleStyle: {
fontFamily: 'monospace',
fontSize: 30,
},
}} />
<Stack.Screen name='Dashboard' component={Homepage} options={{
headerShown: false,}}/>
</Stack.Navigator>
</NavigationContainer>
);
}
export default App;