Fixed replies tab bottom desing issue

This commit is contained in:
Mustafa Buyukcelebi 2019-08-28 09:53:45 +03:00
parent 4536cdcb93
commit a6333194f3
2 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,7 @@
import EStyleSheet from 'react-native-extended-stylesheet'; import EStyleSheet from 'react-native-extended-stylesheet';
export default EStyleSheet.create({ export default EStyleSheet.create({
text: { list: {
color: '$primaryBlack', marginBottom: 20,
fontSize: 10,
}, },
}); });

View File

@ -9,7 +9,7 @@ import { injectIntl } from 'react-intl';
import { Comment } from '../../comment'; import { Comment } from '../../comment';
// Styles // Styles
// import styles from './commentStyles'; import styles from './commentStyles';
class CommentsView extends PureComponent { class CommentsView extends PureComponent {
/* Props /* Props
@ -60,6 +60,7 @@ class CommentsView extends PureComponent {
return ( return (
<Fragment> <Fragment>
<FlatList <FlatList
style={styles.list}
data={comments} data={comments}
keyExtractor={this._keyExtractor} keyExtractor={this._keyExtractor}
renderItem={({ item }) => ( renderItem={({ item }) => (