Add Sign in with Apple sorta
This commit is contained in:
@ -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>
|
||||
|
@ -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>
|
||||
);
|
||||
};
|
||||
|
@ -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>
|
||||
);
|
||||
};
|
||||
|
Reference in New Issue
Block a user