-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactStyles.js
More file actions
104 lines (103 loc) · 1.79 KB
/
ContactStyles.js
File metadata and controls
104 lines (103 loc) · 1.79 KB
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
import { StyleSheet } from 'react-native'
export const styles = StyleSheet.create({
container: {
flex: 1,
},
txtHeader: {
fontSize: 23,
fontWeight: '500',
textAlign: 'center',
marginVertical: 15,
},
viewSepratorStyle: {
height: 2,
backgroundColor: 'gray',
margin: 5,
},
viewContactList: {
flexDirection: 'row',
margin: 10,
},
sepratorStyle: {
height: 1,
width: '90%',
backgroundColor: '#DEDEDE',
},
imgContactList: {
width: 60,
aspectRatio: 1,
borderRadius: 30,
},
txtContactList: {
fontSize: 18,
color: 'black',
marginTop: 5,
marginLeft: 15,
},
txtPhoneNumber: {
fontSize: 15,
color: 'black',
marginTop: 5,
marginLeft: 15,
},
viewCheckMarkStyle: {
width: 20,
height: 20,
margin: 15,
},
viewSelectedContactList: {
margin: 10,
alignItems: 'center',
width: 70,
},
imgSelected: {
width: 60,
height: 60,
borderRadius: 30,
},
imgCancelStyle: {
resizeMode: 'contain',
width: '100%',
height: '100%',
},
txtSelectedContact: {
fontSize: 15,
color: 'black',
marginTop: 15,
},
viewSearch: {
backgroundColor: 'rgb(202,201,207)',
},
viewCloseStyle: {
position: 'absolute',
right: 0,
width: 25,
height: 25,
},
searchInput: {
width: '96%',
marginHorizontal: '2%',
borderRadius: 10,
marginVertical: 10,
backgroundColor: 'white',
padding: 0,
paddingVertical: 10,
paddingLeft: 20,
fontSize: 18,
},
nameContainer: {
flexDirection: 'column',
width: '60%',
},
loading: {
position: 'absolute',
backgroundColor: 'black',
opacity: 0.2,
top: 0,
bottom: 0,
right: 0,
left: 0,
justifyContent: 'center',
alignItems: 'center',
},
})