mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-03 11:40:44 +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 { FilterBar } from '../../filterBar';
|
||||||
import { Comments } from '../../comments';
|
import { Comments } from '../../comments';
|
||||||
|
|
||||||
|
// Styles
|
||||||
|
import styles from './commentDisplayStyles';
|
||||||
|
|
||||||
class CommentsDisplayView extends PureComponent {
|
class CommentsDisplayView extends PureComponent {
|
||||||
/* Props
|
/* Props
|
||||||
* ------------------------------------------------
|
* ------------------------------------------------
|
||||||
@ -36,7 +39,7 @@ class CommentsDisplayView extends PureComponent {
|
|||||||
defaultText="TRENDING"
|
defaultText="TRENDING"
|
||||||
onDropdownSelect={this._handleOnDropdownSelect}
|
onDropdownSelect={this._handleOnDropdownSelect}
|
||||||
/>
|
/>
|
||||||
<View style={{ padding: 16, paddingBottom: 50, }}>
|
<View style={styles.commentWrapper}>
|
||||||
<Comments
|
<Comments
|
||||||
fetchPost={fetchPost}
|
fetchPost={fetchPost}
|
||||||
commentCount={commentCount}
|
commentCount={commentCount}
|
||||||
|
Loading…
Reference in New Issue
Block a user