Authored by 张丽霞

新品到着fix bug,review by redding

... ... @@ -92,8 +92,8 @@ let styles = StyleSheet.create({
backgroundColor: '#999999',
borderRadius: 8,
flexDirection:'row',
marginLeft: 32,
marginRight: 22,
marginLeft: 28,
marginRight: 18,
justifyContent: 'center',
},
newSaleText: {
... ... @@ -101,6 +101,7 @@ let styles = StyleSheet.create({
fontSize: 9,
color: 'white',
marginTop: 2,
backgroundColor: 'transparent'
},
iconStyle: {
marginTop: 4,
... ...
... ... @@ -84,7 +84,7 @@ let {width, height} = Dimensions.get('window');
let styles = StyleSheet.create({
container: {
width: width,
height: height - 64,
height: height - 30,
backgroundColor: '#f0f0f0',
},
contentContainer: {
... ...
... ... @@ -106,10 +106,13 @@ class NewArrivalContainer extends Component {
);
}
}
let {width, height} = Dimensions.get('window');
let styles = StyleSheet.create({
container: {
flex: 1,
width: width,
height: height,
},
});
... ...