-
Notifications
You must be signed in to change notification settings - Fork 10
/
styles.js
55 lines (49 loc) · 996 Bytes
/
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
import React from 'react-native';
export default React.StyleSheet.create({
list: {},
row: {
flexDirection: 'row',
alignItems: 'center',
paddingLeft:10,
paddingRight:10
},
optionLabel: {
flex: 1,
},
optionIndicator: {
marginRight:6,
width: 20,
height: 20,
justifyContent: 'center',
alignItems: 'center'
},
optionIndicatorIcon: {
width: 20,
height: 20
},
separator: {
height: 1,
marginTop: 4,
marginBottom: 4,
backgroundColor: '#efefef',
},
radio:{
marginRight:6,
borderWidth:1,
borderColor:'#666666',
borderRadius:10,
width:20,
height:20,
alignItems:'center',
justifyContent:'center'
},
selected:{
color:'#0066CC'
},
dot:{
width:14,
height:14,
backgroundColor:'#0066CC',
borderRadius:7
}
});