31 lines
809 B
TypeScript
31 lines
809 B
TypeScript
import { Image } from 'expo-image';
|
|
import { Platform, StyleSheet, Text, View } from 'react-native';
|
|
|
|
import { Collapsible } from '@/components/Collapsible';
|
|
import { ExternalLink } from '@/components/ExternalLink';
|
|
import ParallaxScrollView from '@/components/ParallaxScrollView';
|
|
import { ThemedText } from '@/components/ThemedText';
|
|
import { ThemedView } from '@/components/ThemedView';
|
|
import { IconSymbol } from '@/components/ui/IconSymbol';
|
|
|
|
export default function TabTwoScreen() {
|
|
return (
|
|
<View>
|
|
<Text>Test</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
headerImage: {
|
|
color: '#808080',
|
|
bottom: -90,
|
|
left: -35,
|
|
position: 'absolute',
|
|
},
|
|
titleContainer: {
|
|
flexDirection: 'row',
|
|
gap: 8,
|
|
},
|
|
});
|