...
|
...
|
@@ -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: {
|
...
|
...
|
|