diff --git a/src/components/basicUIElements/view/tag/tagStyles.js b/src/components/basicUIElements/view/tag/tagStyles.js index 61b8dcadd..f5859850b 100644 --- a/src/components/basicUIElements/view/tag/tagStyles.js +++ b/src/components/basicUIElements/view/tag/tagStyles.js @@ -8,11 +8,14 @@ export default EStyleSheet.create({ isPin: { backgroundColor: '$primaryBlue', }, + isPostCardTag: { + backgroundColor: '$iconColor', + }, textWrapper: { paddingHorizontal: 10, justifyContent: 'center', marginRight: 8, - height: 15, + height: 20, backgroundColor: '$iconColor', borderRadius: 50, }, diff --git a/src/components/basicUIElements/view/tag/tagView.js b/src/components/basicUIElements/view/tag/tagView.js index 2aff6106e..53fe998a9 100644 --- a/src/components/basicUIElements/view/tag/tagView.js +++ b/src/components/basicUIElements/view/tag/tagView.js @@ -2,10 +2,14 @@ import React, { Fragment } from 'react'; import { Text, View, TouchableOpacity } from 'react-native'; import styles from './tagStyles'; -const Tag = ({ onPress, isPin, value }) => ( +const Tag = ({ + onPress, isPin, value, isPostCardTag, +}) => ( onPress && onPress(value)}> - + {value} diff --git a/src/components/basicUIElements/view/userListItem/userListItem.js b/src/components/basicUIElements/view/userListItem/userListItem.js index e374418f5..8e5270a1f 100644 --- a/src/components/basicUIElements/view/userListItem/userListItem.js +++ b/src/components/basicUIElements/view/userListItem/userListItem.js @@ -5,7 +5,6 @@ import styles from './userListItemStyles'; const UserListItem = ({ avatar, - reputation, rightText, description, username, @@ -20,10 +19,7 @@ const UserListItem = ({ - - {username} - {reputation && {reputation}} - + {username} {description && {description}} {isHasRightItem && ( diff --git a/src/components/postElements/headerDescription/view/postHeaderDescription.js b/src/components/postElements/headerDescription/view/postHeaderDescription.js index ae0754cf1..ffe264b40 100644 --- a/src/components/postElements/headerDescription/view/postHeaderDescription.js +++ b/src/components/postElements/headerDescription/view/postHeaderDescription.js @@ -77,7 +77,7 @@ class PostHeaderDescription extends Component { {tag && ( tagOnPress && tagOnPress()}> - + )} {date} diff --git a/src/components/searchModal/view/searchModalView.js b/src/components/searchModal/view/searchModalView.js index 989cb51c5..561793144 100644 --- a/src/components/searchModal/view/searchModalView.js +++ b/src/components/searchModal/view/searchModalView.js @@ -52,6 +52,7 @@ class SearchModalView extends Component { placeholder={placeholder} placeholderTextColor="#c1c5c7" autoCapitalize="none" + autoFocus /> { const { handleOnUserPress } = this.props; - const reputation = `(${item.reputation})`; const value = `$ ${item.value}`; const percent = `${item.percent}%`; @@ -28,7 +27,6 @@ class VotersDisplayView extends PureComponent { avatar={item.avatar} index={index} username={item.voter} - reputation={reputation} description={item.created} isHasRightItem isRightColor={item.is_down_vote} diff --git a/src/components/walletDetails/view/walletDetailsView.js b/src/components/walletDetails/view/walletDetailsView.js index b2fe44f3f..b3b6e05de 100644 --- a/src/components/walletDetails/view/walletDetailsView.js +++ b/src/components/walletDetails/view/walletDetailsView.js @@ -99,7 +99,7 @@ class WalletDetailsView extends Component { {walletData.showPowerDown && ( diff --git a/src/screens/application/screen/applicationScreen.js b/src/screens/application/screen/applicationScreen.js index 02eddf95b..8646b4db1 100644 --- a/src/screens/application/screen/applicationScreen.js +++ b/src/screens/application/screen/applicationScreen.js @@ -27,7 +27,7 @@ class ApplicationScreen extends Component { return ( - + diff --git a/src/screens/profile/screen/profileScreen.js b/src/screens/profile/screen/profileScreen.js index b5d77691d..45c112a65 100644 --- a/src/screens/profile/screen/profileScreen.js +++ b/src/screens/profile/screen/profileScreen.js @@ -69,7 +69,7 @@ class ProfileScreen extends Component { } return ( -
+
{!isReady ? (