Authored by 于良

Merge branch 'local' into develop

... ... @@ -344,7 +344,7 @@ let styles = StyleSheet.create({
position: 'absolute',
left: 17,
bottom: 0,
width: width,
width: width - 17,
height: 0.5,
backgroundColor: '#e0e0e0',
},
... ...
... ... @@ -110,7 +110,7 @@ export default class UserThatNotMe extends React.Component {
if (this.props.endReached && this.props.posts.size == 0) {
return null;
}
return (
<View style={styles.sectionHeader}>
<Text style={styles.sectionHeaderText}>TA的发布</Text>
... ... @@ -238,9 +238,9 @@ let styles = StyleSheet.create({
},
sectionHeaderBottomLine: {
position: 'absolute',
left: 0,
left: 17,
bottom: 0,
width: width,
width: width - 17,
height: 0.5,
backgroundColor: '#e0e0e0',
},
... ...