* docs(react-native): create the basic expo project * docs(react-native): cross-platform Apple social sign-in * docs(react-native): cross-platform Google social sign-in * docs(react-native): fix typos * docs(react-native): remove wrong entry in the `Connection` component * Correct typos * Prettier * Draft * Draft * docs(react-native): use kebab-case file naming convention in Expo guide - use kebab-case file naming convention in Expo guide - add trailing semicolon to align with the standard Expo template conventions * docs(react-native): use kebab-case file naming convention in Expo social auth example * docs(react-native): update the packages of the Expo social auth example * Fix * Draft * Changes * Correct log message --------- Co-authored-by: Chris Chinchilla <chris.ward@supabase.io> Co-authored-by: Chris Chinchilla <chris@chrischinchilla.com>
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
import { Image } from 'expo-image';
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
import { HelloWave } from '@/components/hello-wave';
|
|
import ParallaxScrollView from '@/components/parallax-scroll-view';
|
|
import { ThemedText } from '@/components/themed-text';
|
|
import { ThemedView } from '@/components/themed-view';
|
|
import SignOutButton from '@/components/social-auth-buttons/sign-out-button';
|
|
import { useAuthContext } from '@/hooks/use-auth-context';
|
|
|
|
export default function HomeScreen() {
|
|
|
|
const { profile } = useAuthContext();
|
|
|
|
return (
|
|
<ParallaxScrollView
|
|
headerBackgroundColor={{ light: '#A1CEDC', dark: '#1D3D47' }}
|
|
headerImage={
|
|
<Image
|
|
source={require('@/assets/images/partial-react-logo.png')}
|
|
style={styles.reactLogo}
|
|
/>
|
|
}>
|
|
<ThemedView style={styles.titleContainer}>
|
|
<ThemedText type="title">Welcome!</ThemedText>
|
|
<HelloWave />
|
|
</ThemedView>
|
|
<ThemedView style={styles.stepContainer}>
|
|
<ThemedText type="subtitle">Username</ThemedText>
|
|
<ThemedText>{profile?.username}</ThemedText>
|
|
<ThemedText type="subtitle">Full name</ThemedText>
|
|
<ThemedText>{profile?.full_name}</ThemedText>
|
|
</ThemedView>
|
|
<SignOutButton />
|
|
</ParallaxScrollView>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
titleContainer: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
gap: 8,
|
|
},
|
|
stepContainer: {
|
|
gap: 8,
|
|
marginBottom: 8,
|
|
},
|
|
reactLogo: {
|
|
height: 178,
|
|
width: 290,
|
|
bottom: 0,
|
|
left: 0,
|
|
position: 'absolute',
|
|
},
|
|
});
|