Authored by 孙凯

修改 红人店铺bug review by zhanglixia

... ... @@ -81,6 +81,7 @@ export default class RedBrandStoreFilter extends React.Component {
render() {
return (
<View style={[styles.container]}>
<View style={styles.line}/>
<ListView
contentContainerStyle={[styles.contentContainer]}
enableEmptySections={true}
... ... @@ -90,6 +91,7 @@ export default class RedBrandStoreFilter extends React.Component {
scrollEnabled={false}
scrollsToTop={false}
/>
<View style={styles.line}/>
</View>
);
}
... ... @@ -102,16 +104,12 @@ let styles = StyleSheet.create({
marginLeft: -1,
width: width + 2,
height: 44,
borderTopColor: '#e5e5e5',
borderBottomColor: '#e5e5e5',
borderWidth: 0.5,
backgroundColor:'white',
},
contentContainer: {
flexDirection: 'row',
},
rowContainer: {
marginTop: 0.5,
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
... ... @@ -128,4 +126,9 @@ let styles = StyleSheet.create({
height: 15,
backgroundColor: '#e5e5e5',
},
line: {
width: width,
height: 0.5,
backgroundColor: '#e5e5e5',
},
});
... ...
... ... @@ -86,7 +86,7 @@ let styles = StyleSheet.create({
justifyContent: 'center',
height: 39,
width: width,
backgroundColor: 'white',
backgroundColor: '#e5e5e5',
},
text: {
textAlign: 'left',
... ...