// eslint-disable-next-line eslint-comments/disable-enable-pair /* eslint-disable import/namespace */ import { Sidebar } from '@status-im/components' import { Stack } from '@tamagui/core' import { StatusBar } from 'expo-status-bar' import { ScrollView } from 'tamagui' import type { RootStackParamList } from '../App' import type { NativeStackScreenProps } from '@react-navigation/native-stack' import type { NativeScrollEvent, NativeSyntheticEvent } from 'react-native' type HomeScreenProps = NativeStackScreenProps & { onScroll: (event: NativeSyntheticEvent) => void isMinimized?: boolean } export const HomeScreen = ({ navigation, onScroll, isMinimized, }: HomeScreenProps) => { const onChannelPress = (id: string) => { navigation.navigate('Channel', { channelId: id }) } return ( ) }