2025-01-28 08:19:46 -06:00
|
|
|
import { StyleSheet, Image, Platform } from 'react-native';
|
2025-01-28 10:17:33 -06:00
|
|
|
import { Collapsible } from '@/components/default/Collapsible';
|
|
|
|
import { ExternalLink } from '@/components/default/ExternalLink';
|
|
|
|
import ParallaxScrollView from '@/components/default/ParallaxScrollView';
|
|
|
|
import { ThemedText, ThemedView } from '@/components/theme/Theme';
|
2025-01-28 08:19:46 -06:00
|
|
|
import { IconSymbol } from '@/components/ui/IconSymbol';
|
|
|
|
|
2025-01-28 10:17:33 -06:00
|
|
|
const TabTwoScreen = () => {
|
2025-01-28 08:19:46 -06:00
|
|
|
return (
|
|
|
|
<ParallaxScrollView
|
|
|
|
headerImage={
|
2025-01-28 13:24:20 -06:00
|
|
|
<IconSymbol size={80} color='#808080' name='gear.circle' style={styles.headerImage} />
|
2025-01-28 08:45:02 -06:00
|
|
|
}
|
2025-01-28 13:24:20 -06:00
|
|
|
headerTitle={
|
|
|
|
<ThemedText type='title' style={styles.headerTitle}>
|
|
|
|
Settings
|
2025-01-28 08:19:46 -06:00
|
|
|
</ThemedText>
|
2025-01-28 13:24:20 -06:00
|
|
|
}
|
|
|
|
>
|
2025-01-28 08:19:46 -06:00
|
|
|
</ParallaxScrollView>
|
|
|
|
);
|
2025-01-28 10:17:33 -06:00
|
|
|
};
|
|
|
|
export default TabTwoScreen;
|
2025-01-28 08:19:46 -06:00
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
headerImage: {
|
|
|
|
color: '#808080',
|
2025-01-28 13:24:20 -06:00
|
|
|
bottom: 6,
|
|
|
|
left: 38,
|
|
|
|
position: 'absolute',
|
|
|
|
},
|
|
|
|
headerTitle: {
|
2025-01-28 08:19:46 -06:00
|
|
|
position: 'absolute',
|
2025-01-28 13:24:20 -06:00
|
|
|
bottom: 20,
|
|
|
|
left: 16,
|
|
|
|
right: 0,
|
|
|
|
textAlign: 'center',
|
|
|
|
fontSize: 48,
|
|
|
|
lineHeight: 64,
|
|
|
|
fontWeight: 'bold',
|
2025-01-28 08:19:46 -06:00
|
|
|
},
|
|
|
|
titleContainer: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
gap: 8,
|
|
|
|
},
|
|
|
|
});
|