// eslint-disable-next-line eslint-comments/disable-enable-pair /* eslint-disable import/namespace */ import { Composer, Messages } from '@status-im/components' import { Stack, useTheme } from '@tamagui/core' import { Keyboard, KeyboardAvoidingView, Platform, TouchableWithoutFeedback, } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' import { ScrollView } from 'tamagui' export const ChannelScreen = () => { const insets = useSafeAreaInsets() const theme = useTheme() return ( ) }