import {useBottomTabBarHeight} from '@react-navigation/bottom-tabs'; import {StackNavigationProp} from '@react-navigation/stack'; import React, {useContext} from 'react'; import {StyleSheet} from 'react-native'; import {SafeAreaView} from 'react-native-safe-area-context'; import { Channel, Chat, MessageInput, MessageList, } from 'stream-chat-react-native'; import {ChatContext} from '../../App'; import {ChatInput} from '../../components'; import ChatHeader from '../../components/messages/ChatHeader'; import {MainStackParams} from '../../routes'; import {isIPhoneX} from '../../utils'; type ChatScreenNavigationProp = StackNavigationProp; interface ChatScreenProps { navigation: ChatScreenNavigationProp; } /* * Screen that displays all of the user's active conversations. */ const ChatScreen: React.FC = () => { const {channel, chatClient} = useContext(ChatContext); const tabbarHeight = useBottomTabBarHeight(); return ( {}} /> ); }; const styles = StyleSheet.create({ container: { backgroundColor: 'white', flex: 1, }, }); export default ChatScreen;