Authored by chenl

调整了明星原创详情箭头在android机器上未对齐、逛tag显示被裁减的问题。review by yuliang。

... ... @@ -13,6 +13,7 @@ const {
ListView,
Dimensions,
TouchableOpacity,
Platform,
} = ReactNative;
... ... @@ -71,7 +72,7 @@ let styles = StyleSheet.create({
top: 20,
left: 10,
width: 20,
height: 20,
height: Platform.OS === 'ios' ? 20 : 22,
marginRight: 0,
},
tagContainer: {
... ... @@ -88,7 +89,7 @@ let styles = StyleSheet.create({
marginRight: 13,
marginTop: 20,
marginBottom: 0,
height: 20,
height: Platform.OS === 'ios' ? 20 : 22,
textDecorationLine:'underline'
},
});
... ...
... ... @@ -13,6 +13,7 @@ import ReactNative, {
StyleSheet,
Image,
Dimensions,
Platform,
TouchableOpacity,
} from 'react-native';
import Immutable, {Map} from 'immutable';
... ... @@ -130,7 +131,7 @@ let styles = StyleSheet.create({
color: '#bbbbbb',
},
moreArrow: {
marginTop: 5 * DEVICE_WIDTH_RATIO,
marginTop: Platform.OS === 'ios' ? 5 * DEVICE_WIDTH_RATIO : 7 * DEVICE_WIDTH_RATIO,
marginLeft: 15 * DEVICE_WIDTH_RATIO,
marginRight: 15 * DEVICE_WIDTH_RATIO,
},
... ...