mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-20 11:51:52 +03:00
Merge pull request #1101 from esteemapp/bugfix/replies-design
Fixed replies tab bottom desing issue
This commit is contained in:
commit
51b8abd5e7
@ -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,
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -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 }) => (
|
||||||
|
Loading…
Reference in New Issue
Block a user