Work more on layout.

This commit is contained in:
Jordan Hewitt 2025-02-13 06:42:28 -08:00
parent 078cc95765
commit 52bb6f812c
2 changed files with 6 additions and 21 deletions

View File

@ -1,5 +1,6 @@
import { Stack } from 'expo-router'; import { Stack } from 'expo-router';
export default function Layout() { export default function Layout() {
return ( return (
<Stack <Stack
@ -12,6 +13,7 @@ export default function Layout() {
fontWeight: 'bold', fontWeight: 'bold',
}, },
}} }}
/> >
</Stack>
); );
} }

View File

@ -39,26 +39,9 @@ export default function Home() {
return ( return (
<View style={styles.container}> <View style={styles.container}>
<Pressable> <Stack.Screen name="index" />
<Text>Settings</Text> <Stack.Screen name="settings" />
</Pressable> <Stack.Screen name="conversation" />
<Stack.Screen
options={{
title: "My home",
headerStyle: { backgroundColor: "#f4511e" },
headerTintColor: "#fff",
headerTitleStyle: {
fontWeight: "bold",
},
}}
/>
<Text>Home Screen</Text>
{conversation ? (
<ConversationThread conversation={conversation} onGoBack={onGoBack} />
) : (
<LanguageSelection onLangSelected={onLangSelected} />
)}
)
</View> </View>
); );
} }