Authored by 于良

Merge branch 'local' into develop

... ... @@ -82,6 +82,9 @@ export default class ListCell extends React.Component {
if (title && !desc && thumbs.length > 0) {
thumbMarginTop = 9;
}
if (!title && !desc && thumbs.length > 0) {
thumbMarginTop = 0;
}
return (
<TouchableOpacity
style={styles.row}
... ... @@ -170,12 +173,12 @@ let styles = StyleSheet.create({
color: '#888888',
},
thumbs: {
marginTop: 10,
marginTop: 15,
},
bottom: {
flexDirection: 'row',
justifyContent: 'space-between',
marginTop: 12,
marginTop: 15,
marginBottom: 15,
},
buttonContainer: {
... ...
... ... @@ -116,7 +116,7 @@ let styles = StyleSheet.create({
borderWidth: 1,
justifyContent: 'center',
alignItems: 'center',
opacity: 0.9,
opacity: 1,
backgroundColor: 'white',
},
text: {
... ...