24 lines
459 B
TypeScript
24 lines
459 B
TypeScript
import { StyleSheet, Image, Platform } from 'react-native';
|
|
|
|
import { IconSymbol } from '@/components/ui/IconSymbol';
|
|
import { Text } from '@react-navigation/elements';
|
|
|
|
export default function TabTwoScreen() {
|
|
return (
|
|
<Text>Explore</Text>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
headerImage: {
|
|
color: '#808080',
|
|
bottom: -90,
|
|
left: -35,
|
|
position: 'absolute',
|
|
},
|
|
titleContainer: {
|
|
flexDirection: 'row',
|
|
gap: 8,
|
|
},
|
|
});
|