mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-02 11:15:35 +03:00
created comment display style file
This commit is contained in:
parent
723720ef91
commit
07ed3449ac
@ -0,0 +1,8 @@
|
||||
import EStyleSheet from 'react-native-extended-stylesheet';
|
||||
|
||||
export default EStyleSheet.create({
|
||||
commentWrapper: {
|
||||
padding: 16,
|
||||
paddingBottom: 50,
|
||||
},
|
||||
});
|
@ -5,6 +5,9 @@ import { View } from 'react-native';
|
||||
import { FilterBar } from '../../filterBar';
|
||||
import { Comments } from '../../comments';
|
||||
|
||||
// Styles
|
||||
import styles from './commentDisplayStyles';
|
||||
|
||||
class CommentsDisplayView extends PureComponent {
|
||||
/* Props
|
||||
* ------------------------------------------------
|
||||
@ -36,7 +39,7 @@ class CommentsDisplayView extends PureComponent {
|
||||
defaultText="TRENDING"
|
||||
onDropdownSelect={this._handleOnDropdownSelect}
|
||||
/>
|
||||
<View style={{ padding: 16, paddingBottom: 50, }}>
|
||||
<View style={styles.commentWrapper}>
|
||||
<Comments
|
||||
fetchPost={fetchPost}
|
||||
commentCount={commentCount}
|
||||
|
Loading…
Reference in New Issue
Block a user