Work more on layout.
This commit is contained in:
parent
078cc95765
commit
52bb6f812c
@ -1,5 +1,6 @@
|
||||
import { Stack } from 'expo-router';
|
||||
|
||||
|
||||
export default function Layout() {
|
||||
return (
|
||||
<Stack
|
||||
@ -12,6 +13,7 @@ export default function Layout() {
|
||||
fontWeight: 'bold',
|
||||
},
|
||||
}}
|
||||
/>
|
||||
>
|
||||
</Stack>
|
||||
);
|
||||
}
|
||||
|
@ -39,26 +39,9 @@ export default function Home() {
|
||||
|
||||
return (
|
||||
<View style={styles.container}>
|
||||
<Pressable>
|
||||
<Text>Settings</Text>
|
||||
</Pressable>
|
||||
<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} />
|
||||
)}
|
||||
)
|
||||
<Stack.Screen name="index" />
|
||||
<Stack.Screen name="settings" />
|
||||
<Stack.Screen name="conversation" />
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user