RyanHub - file viewer
filename: src/screens/SomeTabScreen2.tsx
branch: main
back to repo
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>
  );
}