-
Notifications
You must be signed in to change notification settings - Fork 1
/
Styles.js
101 lines (95 loc) · 1.74 KB
/
Styles.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
import { Text, StyleSheet } from "react-native";
import { ScreenHeight, ScreenWidth } from "react-native-elements/dist/helpers";
var byuBlue = "#151561";
export const styles = StyleSheet.create({
//Add event view
text: {
},
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
paddingTop: 20
},
header: {
fontSize: 26,
},
rowContainer: {
display: "flex",
flexDirection: "row",
padding: 10,
marginRight: 15,
marginLeft: 15,
marginTop: 5
},
textInput: {
flex: 1,
borderBottomWidth: 1,
},
textBox: {
flex: 1,
borderWidth: 1,
borderRadius: 10,
marginTop: 20,
marginBottom: 20,
paddingLeft: 5
},
headerButton: {
padding: 4,
},
dropdown: {
width: 350,
height: 30,
margin: 20
},
datePicker: {
backgroundColor: "#bb0000",
color: "#bb0000"
},
//End add event view
// list view
eventListHeader: {
padding: 10,
fontSize: 24,
backgroundColor: "#fff",
},
eventListItem: {
padding: 10,
backgroundColor: "#fff",
},
listDivider: {
height: 1,
width: ScreenWidth,
padding: 5,
backgroundColor: "#fff",
},
listContainer: {
flex: 1,
},
// end list view
// event detail view
EventDetailView_infoContainer: {
display: "flex",
alignItems: "flex-start",
padding: 10,
width: "100%",
height: "100%",
backgroundColor: "#fff",
},
EventDetailView_detailContainer: {
display: "flex",
flexDirection: "row",
justifyContent: "space-between",
width: "100%",
},
headerStyle: {
backgroundColor: byuBlue,
},
headerTitleStyle: {
color: "#fff",
},
//home footer
homeTabs: {
backgroundColor: byuBlue,
},
});