-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.js
107 lines (105 loc) · 1.98 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
102
103
104
105
106
107
const React = require('react-native')
const {StyleSheet} = React
const constants = {
actionColor: '#24CE84'
};
var styles = StyleSheet.create({
container: {
backgroundColor: '#f2f2f2',
flex: 1,
},
listview: {
flex: 1,
},
flexer: {
flex: 1,
},
numberpickerOuter: {
flexDirection: 'row',
height: 120,
alignItems: 'center',
},
numberpicker: {
marginLeft: 25,
marginRight: 25,
flexDirection: 'column',
flexWrap: 'wrap',
justifyContent: 'flex-start',
//alignSelf: 'flex-start',
alignItems: 'flex-start',
},
numberpickerButton: {
width: 120,
backgroundColor: constants.actionColor,
height: 40,
},
numberpickerValue: {
width: 120,
height: 40,
},
numberpickerContainer: {
flexDirection: 'row',
flexWrap: 'wrap',
},
// li: {
// backgroundColor: '#fff',
// borderBottomColor: '#eee',
// borderColor: 'transparent',
// borderWidth: 1,
// paddingLeft: 16,
// paddingTop: 14,
// paddingBottom: 16,
// },
// liContainer: {
// flex: 2,
// },
// liText: {
// color: '#333',
// fontSize: 16,
// },
navbar: {
alignItems: 'center',
backgroundColor: '#fff',
borderBottomColor: '#eee',
borderColor: 'transparent',
borderWidth: 1,
justifyContent: 'center',
height: 44,
flexDirection: 'row'
},
navbarTitle: {
color: '#444',
fontSize: 16,
fontWeight: "500"
},
statusbar: {
backgroundColor: '#fff',
height: 22,
},
center: {
textAlign: 'center',
},
actionText: {
color: '#fff',
fontSize: 22,
textAlign: 'center',
},
textInput: {
fontSize: 16,
color:"#333",
height: 44
},
action: {
backgroundColor: constants.actionColor,
borderColor: 'transparent',
borderWidth: 1,
borderRadius: 3,
marginLeft: 25,
marginRight: 25,
marginTop: 25,
height:60,
justifyContent: 'center'
},
})
module.exports = styles
module.exports.constants = constants;