Work more on layout.
This commit is contained in:
parent
078cc95765
commit
52bb6f812c
@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user