Add Sign in with Apple sorta

This commit is contained in:
2025-03-05 12:58:18 -06:00
parent 06471f688a
commit c62926b8f2
35 changed files with 1458 additions and 620 deletions

View File

@ -37,16 +37,14 @@ const TabLayout = () => {
name='index'
options={{
title: 'Home',
tabBarIcon: ({ color }) =>
<IconSymbol size={28} name='house.fill' color={color} />,
tabBarIcon: ({ color }) => <IconSymbol size={28} name='house.fill' color={color} />,
}}
/>
<Tabs.Screen
name='settings'
options={{
title: 'Settings',
tabBarIcon: ({ color }) =>
<IconSymbol size={28} name='gearshape.fill' color={color} />,
tabBarIcon: ({ color }) => <IconSymbol size={28} name='gearshape.fill' color={color} />,
}}
/>
</Tabs>

View File

@ -1,23 +1,20 @@
import { Image, StyleSheet, Platform } from 'react-native';
import ParallaxScrollView from '@/components/default/ParallaxScrollView';
import { ThemedText, ThemedView } from '@/components/theme/Theme';
import { ThemedText, ThemedView } from '@/components/theme';
const HomeScreen = () => {
return (
<ParallaxScrollView
headerImage={
<Image
source={require('@/assets/images/tech_tracker_logo.png')}
style={styles.reactLogo}
/>
<Image source={require('@/assets/images/tech_tracker_logo.png')} style={styles.reactLogo} />
}
headerTitle={
<ThemedText type='title' style={styles.headerTitle}>Tech Tracker</ThemedText>
<ThemedText type='title' style={styles.headerTitle}>
Tech Tracker
</ThemedText>
}
>
<ThemedView style={styles.titleContainer}>
</ThemedView>
<ThemedView style={styles.titleContainer}></ThemedView>
</ParallaxScrollView>
);
};

View File

@ -1,9 +1,8 @@
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';
import { ThemedText, ThemedView } from '@/components/theme';
import { IconSymbol } from '@/components/ui/IconSymbol';
import Logout_Button from '@/components/auth/Logout_Button';
const TabTwoScreen = () => {
return (
@ -17,6 +16,7 @@ const TabTwoScreen = () => {
</ThemedText>
}
>
<Logout_Button />
</ParallaxScrollView>
);
};