47 lines
1.1 KiB
TypeScript
Raw Permalink Normal View History

2025-01-28 08:19:46 -06:00
import { StyleSheet, Image, Platform } from 'react-native';
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';
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>
);
};
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,
},
});