...
|
...
|
@@ -100,12 +100,12 @@ let {width, height} = Dimensions.get('window'); |
|
|
|
|
|
let styles = StyleSheet.create({
|
|
|
container: {
|
|
|
marginLeft: -1,
|
|
|
width: width + 2,
|
|
|
height: 37,
|
|
|
borderTopColor: 'transparent',
|
|
|
borderBottomColor: '#e5e5e5',
|
|
|
borderWidth: 0.5,
|
|
|
width: width,
|
|
|
height: 44,
|
|
|
borderTopWidth: 0.5,
|
|
|
borderTopColor: '#e0e0e0',
|
|
|
borderBottomWidth: 0.5,
|
|
|
borderBottomColor: '#e0e0e0',
|
|
|
backgroundColor:'white',
|
|
|
},
|
|
|
contentContainer: {
|
...
|
...
|
@@ -116,16 +116,17 @@ let styles = StyleSheet.create({ |
|
|
justifyContent: 'center',
|
|
|
alignItems: 'center',
|
|
|
width: Math.ceil(width / 3),
|
|
|
height: 37,
|
|
|
height: 44,
|
|
|
backgroundColor:'white',
|
|
|
},
|
|
|
name: {
|
|
|
color: '#b0b0b0',
|
|
|
fontSize: 17,
|
|
|
},
|
|
|
separator: {
|
|
|
width: 0.5,
|
|
|
top: 37 / 4,
|
|
|
height: 37 / 2,
|
|
|
backgroundColor: '#e5e5e5',
|
|
|
top: 14,
|
|
|
height: 16,
|
|
|
backgroundColor: '#e0e0e0',
|
|
|
},
|
|
|
}); |
...
|
...
|
|