-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
343 lines (330 loc) · 11.9 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
import * as React from 'react';
import { Alert, Button, Image, StyleSheet, View, Text, TouchableOpacity} from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import placesPic from './assets/placesPic.jpg';
import groupPic from './assets/groupPic.jpg';
import partyPic from './assets/partyPic.jpg';
import globePic from './assets/globePic.jpg';
function HomeScreen({ navigation }) {
return (
<View style={styles.container}>
<View style={{ flexDirection: 'row', justifyContent: 'center' }}>
<TouchableOpacity onPress={() => navigation.navigate('Options')} style={styles.homeButton} >
<Image
style={{ flex: 1, height: 100, width: 100, right: 30, bottom: 4}}
source={require('./logo.png')}
resizeMode="contain"
/>
<Text style={{ fontSize: 30, right: 80, letterSpacing: 2 }}>
MEMO-RY </Text>
</TouchableOpacity>
</View>
</View>
);
}
function OptionsScreen({ navigation }) {
return (
<View style={styles.container}>
<View style={styles.RectangleLogo}>
<Text
style={{ fontSize: 30, lineHeight: 50, letterSpacing: 15, paddingTop: 0, color: '#ffffff', textAlign: "center" }}>
MEMO-RY
</Text>
</View>
<View style={styles.blackLine}></View>
<View >
<View>
<TouchableOpacity onPress={() => navigation.navigate('List')} style={styles.button} >
<Text style={styles.instructions} activeOpacity={0.5}>To-Do List</Text>
</TouchableOpacity>
</View>
</View>
<View >
<View >
<TouchableOpacity onPress={() => navigation.navigate('Memories')} style={styles.button}>
<Text style={styles.instructions} activeOpacity={0.5}>Memories</Text>
</TouchableOpacity>
</View>
</View>
<View >
<View >
<TouchableOpacity style={styles.button}>
<Text style={styles.instructions} activeOpacity={0.5}>Emergency Call</Text>
</TouchableOpacity>
</View>
</View>
</View>
);
}
function ListScreen({ navigation }) {
return (
<View style={styles.container}>
<View style={styles.RectangleLogo}>
<Text
style={{ fontSize: 30, lineHeight: 50, letterSpacing: 15, paddingTop: 0, color: '#ffffff', textAlign: "center" }}>
MEMO-RY
</Text>
</View>
<View >
<View>
<TouchableOpacity style={styles.listButton}>
<Text style={styles.titleText} activeOpacity={0.5}>To Do List</Text>
</TouchableOpacity>
</View>
</View>
<View >
<View>
<TouchableOpacity style={styles.listButton}>
<Text style={styles.listText} activeOpacity={0.5}>7:00: Take Medication</Text>
</TouchableOpacity>
</View>
</View>
<View >
<View >
<TouchableOpacity style={styles.listButton}>
<Text style={styles.listText} activeOpacity={0.5}>7:30: Brush Teeth</Text>
</TouchableOpacity>
</View>
</View>
<View >
<View >
<TouchableOpacity style={styles.listButton}>
<Text style={styles.listText} activeOpacity={0.5}>11:00: DR. Appointment</Text>
</TouchableOpacity>
</View>
</View>
<View >
<View >
<TouchableOpacity style={styles.listButton}>
<Text style={styles.listText} activeOpacity={0.5}>1:30: Lunch with Robyn</Text>
</TouchableOpacity>
</View>
</View>
<View >
<View >
<TouchableOpacity style={styles.listButton}>
<Text style={styles.listText} activeOpacity={0.5}>3:00: Visit Family</Text>
</TouchableOpacity>
</View>
</View>
<View >
<View >
<TouchableOpacity style={styles.listButton}>
<Text style={styles.listText} activeOpacity={0.5}>5:00: Gardening Club</Text>
</TouchableOpacity>
</View>
</View>
<View >
<View >
<TouchableOpacity style={styles.listButton}>
<Text style={styles.listText} activeOpacity={0.5}>9:00: Medication</Text>
</TouchableOpacity>
</View>
</View>
</View>
);
}
function MemoriesScreen({ navigation }) {
return (
<View style={styles.container}>
<View style={styles.RectangleLogo}>
<Text
style={{ fontSize: 30, lineHeight: 50, letterSpacing: 15, paddingTop: 0, color: '#ffffff', textAlign: "center" }}>
MEMO-RY
</Text>
</View>
<View style={{
backgroundColor: '#E3EAEB', marginTop: 0,
}}></View>
<View >
<View>
<TouchableOpacity onPress={() => navigation.navigate('People')} style={styles.button}>
<Text style={styles.instructions} activeOpacity={0.5}>People</Text>
<Image source={groupPic} style={styles.groupPic} />
</TouchableOpacity>
</View>
</View>
<View >
<View >
<TouchableOpacity style={styles.button}>
<Text style={styles.instructions} activeOpacity={0.5}>Places</Text>
<Image source={placesPic} style={styles.placesPic} />
</TouchableOpacity>
</View>
</View>
<View >
<View >
<TouchableOpacity style={styles.button}>
<Text style={styles.instructions} activeOpacity={0.5}>Events</Text>
<Image source={partyPic} style={styles.partyPic} />
</TouchableOpacity>
</View>
</View>
<View >
<View >
<TouchableOpacity style={styles.button}>
<Text style={styles.instructions} activeOpacity={0.5}>All</Text>
<Image source={globePic} style={styles.globePic} />
</TouchableOpacity>
</View>
</View>
</View>
);
}
function PeopleScreen({ navigation }) {
return (
<View style={styles.peopleContainer}>
<View style={styles.RectangleLogo}>
<Text
style={{ fontSize: 30, lineHeight: 50, letterSpacing: 15, paddingTop: 0, color: '#ffffff', textAlign: "center" }}>
MEMO-RY
</Text>
</View>
<Image
style={{ flex: 1, height: 100, width: 350, top: 0 }}
source={require('./testPic.jpg')}
resizeMode="contain"
/>
<View style={styles.RectangleButton}>
<TouchableOpacity onPress={() => Alert.alert('Robyn, Shristi, Victoria, and Pranooha','We are 4 freshmen CS majors, and this is our first app!')}>
<Text
style={{ fontSize: 20, lineHeight: 25, letterSpacing: 10, paddingTop: 22, color: '#ffffff', textAlign: "center",}}>
Read More
</Text>
</TouchableOpacity>
</View>
<View>
<View style={styles.NavigationBar} />
<Text
style={{ fontSize: 15, lineHeight: 50, letterSpacing: 10, color: '#ffffff', textAlign: "center" }}>
Previous Next
</Text>
</View>
</View>
);
}
const Stack = createStackNavigator();
function App() {
return (
<NavigationContainer>
<Stack.Navigator initialRouteName="Home">
<Stack.Screen name="Home" component={HomeScreen} />
<Stack.Screen name="Options" component={OptionsScreen} />
<Stack.Screen name="List" component={ListScreen} />
<Stack.Screen name="Memories" component={MemoriesScreen} />
<Stack.Screen name="People" component={PeopleScreen} />
</Stack.Navigator>
</NavigationContainer>
);
}
const styles = StyleSheet.create({
// Styles for pictures (sets width, height, right-justifies)
placesPic: {
width: 152,
height: 80,
marginLeft: 45,
justifyContent: 'flex-start',
},
groupPic: {
width: 152,
height: 80,
marginLeft: 40,
justifyContent: 'flex-start',
},
partyPic: {
width: 152,
height: 80,
marginLeft: 44,
justifyContent: 'flex-start',
},
globePic: {
width: 152,
height: 80,
marginLeft: 131,
justifyContent: 'flex-start',
},
peopleContainer: {
flex: 1,
backgroundColor: '#E3EAEB',
alignItems: 'center',
justifyContent: 'center',
},
// General layout
container: {
flex: 1,
flexDirection: 'column',
backgroundColor: '#E3EAEB',
alignItems: 'center',
justifyContent: 'space-evenly',
alignItems: 'stretch',
},
// Style for text (color, size, margins -- left justifies)
instructions: {
color: '#ffffff',
fontSize: 30,
marginHorizontal: 15,
marginLeft: 20,
justifyContent: 'flex-start',
letterSpacing: 10,
},
// Style for button (organizes items in center of row, background color, dimensions)
button: {
flexDirection: 'row',
alignItems: 'center',
backgroundColor: '#329ba8',
height: 80,
width: 400,
borderRadius: 5,
},
listButton: {
flexDirection: 'row',
alignItems: 'center',
backgroundColor: '#E3EAEB',
height: 40,
width: 400,
},
homeButton: {
flexDirection: 'row',
alignItems: 'center',
backgroundColor: '#E3EAEB',
height: 100,
width: 400,
borderRadius: 5,
},
RectangleLogo: {
marginTop: 40,
width: 400,
height: 50,
backgroundColor: '#329ba8',
},
RectangleButton: {
marginBottom: 120,
width: 200,
height: 70,
backgroundColor: '#329ba8',
top: 55,
},
//Title
titleText: {
fontSize: 40,
fontWeight: 'bold',
color: 'black',
marginLeft: 10,
},
listText: {
color: 'black',
fontSize: 30,
marginHorizontal: 15,
marginLeft: 20,
},
NavigationBar: {
width: 500,
height: 60,
backgroundColor: '#329ba8',
opacity: .4,
position: 'absolute',
marginLeft: -10,
}
});
export default App;