diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-04-08 14:35:41 -0400 |
|---|---|---|
| committer | Ivan Chen <ivan@tagg.id> | 2021-04-08 14:35:41 -0400 |
| commit | 4d5e79c7bc6e5112684506047954a47f3a97e891 (patch) | |
| tree | 403b3e595834bd4416981bd77c07dafa081ff975 | |
| parent | e3483bcf735c2a65ab53d5ee10e43ca6c5e33864 (diff) | |
added tabs gradient
| -rw-r--r-- | src/screens/chat/ChatListScreen.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/screens/chat/ChatListScreen.tsx b/src/screens/chat/ChatListScreen.tsx index 637c6231..3290116b 100644 --- a/src/screens/chat/ChatListScreen.tsx +++ b/src/screens/chat/ChatListScreen.tsx @@ -5,6 +5,7 @@ import {SafeAreaView, StatusBar, StyleSheet, View} from 'react-native'; import {useStore} from 'react-redux'; import {ChannelList, Chat} from 'stream-chat-react-native'; import {ChatContext} from '../../App'; +import {TabsGradient} from '../../components'; import {ChannelPreview, MessagesHeader} from '../../components/messages'; import {MainStackParams} from '../../routes'; import {RootState} from '../../store/rootReducer'; @@ -100,6 +101,7 @@ const ChatListScreen: React.FC<ChatListScreenProps> = () => { </Chat> )} </SafeAreaView> + <TabsGradient /> </View> ); }; |
