-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[wip] build proof of concept bottom tab nav bar, difficult to integra…
…te with main page.
- Loading branch information
1 parent
c35b21e
commit f1b6516
Showing
5 changed files
with
34 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { Stack } from 'expo-router'; | ||
|
||
export default function CasesLayout() { | ||
return <Stack screenOptions={{ headerShown: false }} />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { Stack } from 'expo-router'; | ||
|
||
export default function ProfileLayout() { | ||
return <Stack screenOptions={{ headerShown: false }} />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import React from 'react'; | ||
import { Text, View } from 'react-native'; | ||
import styles from './Profile/styles'; | ||
|
||
export default function HomeScreen() { | ||
return ( | ||
<View style={styles.container}> | ||
<Text>This is a test home screen!</Text> | ||
</View> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
// import { Stack } from 'expo-router'; | ||
import AppLayout from './(BottomTabNavigation)/_layout'; | ||
import { Stack } from 'expo-router'; | ||
// import AppLayout from './(BottomTabNavigation)/_layout'; | ||
|
||
export default function StackLayout() { | ||
return <AppLayout />; | ||
// return <Stack screenOptions={{ headerShown: false }} />; | ||
// return <AppLayout />; | ||
return ( | ||
<Stack screenOptions={{ headerShown: true }}> | ||
<Stack.Screen name="(BottomTabNavigation)" options={{}} /> | ||
</Stack> | ||
); | ||
} |