import { View, Text } from 'react-native';
import { useTheme } from '../contexts/ThemeContext';
export function SomeTabScreen2({ navigation }) {
const { colors } = useTheme();
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Text>Welcome to the other screen!</Text>
</View>
);
}