-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactCSS.txt
152 lines (140 loc) · 2.75 KB
/
contactCSS.txt
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
************ Home Screen *******************************
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff"
},
listItem: {
flexDirection: "row",
padding: 20
},
iconContainer: {
width: 50,
height: 50,
alignItems: "center",
justifyContent: "center",
backgroundColor: "#B83227",
borderRadius: 100
},
contactIcon: {
fontSize: 28,
color: "#fff"
},
infoContainer: {
flexDirection: "column"
},
infoText: {
fontSize: 16,
fontWeight: "400",
paddingLeft: 10,
paddingTop: 2
},
floatButton: {
borderWidth: 1,
borderColor: "rgba(0,0,0,0.2)",
alignItems: "center",
justifyContent: "center",
width: 60,
position: "absolute",
bottom: 10,
right: 10,
height: 60,
backgroundColor: "#B83227",
borderRadius: 100
}
});
************ Home Screen *******************************
************ Add New Contact Screen *******************************
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
margin: 10,
height: 500
},
inputItem: {
margin: 10
},
button: {
backgroundColor: "#B83227",
marginTop: 40
},
buttonText: {
color: "#fff",
fontWeight: "bold"
},
empty: {
height: 500,
backgroundColor: "#FFF"
}
});
************ Add New Contact Screen *******************************
************ View Contact Screen *******************************
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff"
},
contactIconContainer: {
height: 200,
backgroundColor: "#B83227",
alignItems: "center",
justifyContent: "center"
},
contactIcon: {
fontSize: 100,
fontWeight: "bold",
color: "#fff"
},
nameContainer: {
width: "100%",
height: 70,
padding: 10,
backgroundColor: "rgba(255,255,255,0.5)",
justifyContent: "center",
position: "absolute",
bottom: 0
},
name: {
fontSize: 24,
color: "#000",
fontWeight: "900"
},
infoText: {
fontSize: 18,
fontWeight: "300"
},
actionContainer: {
flexDirection: "row"
},
actionButton: {
flex: 1,
justifyContent: "center",
alignItems: "center"
},
actionText: {
color: "#B83227",
fontWeight: "900"
}
});
************ View Contact Screen *******************************
************ Edit Contact Screen *******************************
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
margin: 10
},
inputItem: {
margin: 10
},
button: {
backgroundColor: "#B83227",
marginTop: 40
},
buttonText: {
color: "#fff",
fontWeight: "bold"
}
});
************ Edit Contact Screen *******************************