aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/screens/search/DiscoverUsers.tsx7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/screens/search/DiscoverUsers.tsx b/src/screens/search/DiscoverUsers.tsx
index 09c00057..a1b3322a 100644
--- a/src/screens/search/DiscoverUsers.tsx
+++ b/src/screens/search/DiscoverUsers.tsx
@@ -2,8 +2,8 @@ import React, {useEffect, useState} from 'react';
import {FlatList, StatusBar, StyleSheet} from 'react-native';
import {Text} from 'react-native-animatable';
import {SafeAreaView} from 'react-native-safe-area-context';
-import {HeaderHeight, SCREEN_HEIGHT, SCREEN_WIDTH} from '../../utils';
-import {SearchBackground} from '../../components';
+import {HeaderHeight, SCREEN_WIDTH} from '../../utils';
+import {SearchBackground, TabsGradient} from '../../components';
import {RouteProp} from '@react-navigation/native';
import {MainStackParams} from '../../routes';
import {normalize} from '../../utils';
@@ -45,7 +45,9 @@ const DiscoverUsers: React.FC<DiscoverUsersProps> = ({route}) => {
numColumns={3}
keyExtractor={(item) => item.id}
renderItem={_renderItem}
+ showsVerticalScrollIndicator={false}
/>
+ <TabsGradient />
</SafeAreaView>
</SearchBackground>
);
@@ -65,7 +67,6 @@ const styles = StyleSheet.create({
scrollView: {
top: HeaderHeight,
width: SCREEN_WIDTH * 0.95,
- height: SCREEN_HEIGHT * 0.75,
alignSelf: 'center',
flexDirection: 'column',
},