-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.js
99 lines (97 loc) · 1.93 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
const React = require('react-native')
const {StyleSheet, Dimensions} = React
const constants = {
actionColor: '#24CE84',
width: Dimensions.get('window').width,
height: Dimensions.get('window').height,
loveBlue: "#00529c"
};
var styles = StyleSheet.create({
container: {
backgroundColor: '#f2f2f2',
flex: 1,
},
navAndroid: {
height: 55,
flex: 1,
justifyContent: "flex-start",
backgroundColor: constants.loveBlue,
},
navTitleAndroidCenter: {
flex: 1,
justifyContent: "flex-start",
alignSelf: "flex-start",
alignItems: "flex-start",
color: "#fff",
fontSize: 18,
marginTop: 15
},
navTitleAndroidLeft: {
flex: 1,
justifyContent: "flex-start",
alignSelf: "flex-start",
alignItems: "flex-start",
color: "#fff",
fontSize: 18,
marginTop: 15,
marginLeft: 15
},
containerAndroid: {
backgroundColor: '#f2f2f2',
flex: 1,
marginTop: 55
},
personli: {
backgroundColor: '#fff',
borderBottomColor: '#eee',
borderColor: 'transparent',
borderWidth: 1,
paddingLeft: 16,
paddingRight: 16,
paddingTop: 14,
paddingBottom: 16,
flexDirection: "row",
justifyContent: "space-between"
},
listview: {
flex: 1,
},
li: {
backgroundColor: '#fff',
borderBottomColor: '#eee',
borderColor: 'transparent',
borderWidth: 1,
paddingLeft: 16,
paddingTop: 14,
paddingBottom: 16,
},
liContainer: {
flex: 2,
},
liText: {
color: '#333',
fontSize: 16,
},
liLink: {
fontSize: 16,
color: constants.loveBlue
},
center: {
textAlign: 'center',
},
actionText: {
color: '#fff',
fontSize: 16,
textAlign: 'center',
},
action: {
backgroundColor: constants.actionColor,
borderColor: 'transparent',
borderWidth: 1,
paddingLeft: 16,
paddingTop: 14,
paddingBottom: 16,
},
})
module.exports = styles
module.exports.constants = constants;