diff --git a/src/components/basicUIElements/view/walletLineItem/walletLineItemView.js b/src/components/basicUIElements/view/walletLineItem/walletLineItemView.js index 1fc389113..2e26037ba 100644 --- a/src/components/basicUIElements/view/walletLineItem/walletLineItemView.js +++ b/src/components/basicUIElements/view/walletLineItem/walletLineItemView.js @@ -1,6 +1,5 @@ import React from 'react'; -import { View, Text } from 'react-native'; -import { TouchableWithoutFeedback } from 'react-native-gesture-handler'; +import { View, Text, TouchableOpacity } from 'react-native'; // Components import { DropdownButton, PopoverWrapper, Icon, GrayWrapper } from '../../..'; @@ -30,7 +29,7 @@ const WalletLineItem = ({ hintDescription, onPress, }) => ( - + @@ -104,7 +103,7 @@ const WalletLineItem = ({ )} - + ); export default WalletLineItem; diff --git a/src/components/horizontalIconList/horizontalIconListView.js b/src/components/horizontalIconList/horizontalIconListView.js index fbab7e328..c5c8a3c9c 100644 --- a/src/components/horizontalIconList/horizontalIconListView.js +++ b/src/components/horizontalIconList/horizontalIconListView.js @@ -50,6 +50,7 @@ const HorizontalIconList = ({ options, optionsKeys }) => { keyExtractor={(item) => get(item, 'type', Math.random()).toString()} horizontal renderItem={_renderItem} + showsHorizontalScrollIndicator={false} /> ); diff --git a/src/components/walletHeader/view/walletHeaderStyles.js b/src/components/walletHeader/view/walletHeaderStyles.js index 67034968b..b2cde2575 100644 --- a/src/components/walletHeader/view/walletHeaderStyles.js +++ b/src/components/walletHeader/view/walletHeaderStyles.js @@ -34,7 +34,7 @@ export default EStyleSheet.create({ color: '$primaryDarkText', }, mainButton: { - marginVertical: 8, + marginTop: 16, alignSelf: 'center', paddingHorizontal: 24, }, diff --git a/src/screens/wallet/screen/walletScreen.js b/src/screens/wallet/screen/walletScreen.js index 14acc91d4..6a930993d 100644 --- a/src/screens/wallet/screen/walletScreen.js +++ b/src/screens/wallet/screen/walletScreen.js @@ -6,7 +6,7 @@ import { SafeAreaView, View, RefreshControl, Text } from 'react-native'; // Containers import { FlatList } from 'react-native-gesture-handler'; import { useIntl } from 'react-intl'; -import { LoggedInContainer, ThemeContainer } from '../../../containers'; +import { LoggedInContainer } from '../../../containers'; // Components import { @@ -28,7 +28,7 @@ import styles from './walletScreenStyles'; import POINTS, { POINTS_KEYS } from '../../../constants/options/points'; import { useAppSelector } from '../../../hooks'; -const HEADER_EXPANDED_HEIGHT = 260; +const HEADER_EXPANDED_HEIGHT = 312; const WalletScreen = () => { const intl = useIntl();