-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
81 lines (57 loc) · 1.93 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
69
70
71
72
73
74
75
76
77
78
79
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View , Image} from 'react-native';
import { useTheme, Button, Appbar, } from 'react-native-paper';
import { Provider as PaperProvider, MD3LightTheme as DefaultTheme, } from 'react-native-paper';
import {NavigationContainer} from '@react-navigation/native';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import TitleAppbar from './components/TitleAppbar'
import AirlineDropDown from './components/AirlineDropdown';
import {createNativeStackNavigator} from '@react-navigation/native-stack';
import SSODelta from './pages/SSODelta';
import SeatMap from './pages/SeatMap';
import FlightSelect from './pages/FlightSelect';
import Inbox from './pages/Inbox';
import Loading from './pages/Loading';
import Home from './pages/Home';
const Stack = createNativeStackNavigator()
export default function App() {
return (
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen
name="Home"
component={Home}
options={{title: 'Sign In to an Airline SSO'}}
/>
<Stack.Screen
name="SSODelta"
component={SSODelta}
options={{title: 'Sign In to Delta SSO'}}
/>
<Stack.Screen
name="FlightSelect"
component={FlightSelect}
options={{title: 'Please Select Your Flights'}}
/>
<Stack.Screen
name="SeatMap"
component={SeatMap}
options={{title: 'Request to Seat Swap'}}
/>
<Stack.Screen
name="Inbox"
component={Inbox}
options={{title: 'Request Messages'}}
/>
</Stack.Navigator>
</NavigationContainer>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});