RyanHub - file viewer
filename: src/screens/SomeOtherScreen1.tsx
branch: main
back to repo
import { View, Text } from 'react-native';
import { useTheme } from '../contexts/ThemeContext';

export function SomeOtherScreen1({ navigation }) {
  const { colors } = useTheme();

  return (
    <View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
      <Text>Welcome a screen outside the tab navigation!</Text>
    </View>
  );
}