-
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.
- Loading branch information
1 parent
5e6b3ff
commit 6163fbc
Showing
27 changed files
with
928 additions
and
106 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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import * as React from 'react'; | ||
import { NavigationContainer } from '@react-navigation/native'; | ||
import MainTabNav from '@/navigation/BottomTabNavigator'; | ||
import NavigationBar from '@/navigation/BottomTabNavigator'; | ||
|
||
export default function App() { | ||
return ( | ||
<NavigationContainer> | ||
<MainTabNav /> | ||
<NavigationBar /> | ||
</NavigationContainer> | ||
); | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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 |
---|---|---|
@@ -1,18 +1,27 @@ | ||
import React from 'react'; | ||
import { createNativeStackNavigator } from '@react-navigation/native-stack'; | ||
import index from '../../screens/HealingResources/index'; | ||
import HealingResources from '@/screens/HealingResources'; | ||
import HealingCatalogue from '@/screens/HealingResources/HealingCatalogue'; | ||
import HopeHealingGuide from '@/screens/HealingResources/HopeHealingGuide'; | ||
import { HealingStackParams } from '../types'; | ||
|
||
const HealingStack = createNativeStackNavigator<HealingStackParams>(); | ||
|
||
export default function HealingResourcesNavigator() { | ||
return ( | ||
<HealingStack.Navigator | ||
screenOptions={{ | ||
headerShown: false, | ||
}} | ||
> | ||
<HealingStack.Screen name="Name" component={index} /> | ||
<HealingStack.Navigator> | ||
<HealingStack.Screen | ||
name="HealingResources" | ||
component={HealingResources} | ||
/> | ||
<HealingStack.Screen | ||
name="HealingCatalogue" | ||
component={HealingCatalogue} | ||
/> | ||
<HealingStack.Screen | ||
name="HopeForHealingGuide" | ||
component={HopeHealingGuide} | ||
/> | ||
</HealingStack.Navigator> | ||
); | ||
} |
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,18 +1,16 @@ | ||
import React from 'react'; | ||
import { createNativeStackNavigator } from '@react-navigation/native-stack'; | ||
import index from '../../screens/LegalRights/LegalRightsScreen'; | ||
import LegalRights from '@/screens/LegalRights'; | ||
import VideoPage from '@/screens/LegalRights/VideoPage'; | ||
import { LegalStackParams } from '../types'; | ||
|
||
const LegalStack = createNativeStackNavigator<LegalStackParams>(); | ||
|
||
export default function LegalRightsNavigator() { | ||
return ( | ||
<LegalStack.Navigator | ||
screenOptions={{ | ||
headerShown: false, | ||
}} | ||
> | ||
<LegalStack.Screen name="Name" component={index} /> | ||
<LegalStack.Navigator> | ||
<LegalStack.Screen name="LegalRights" component={LegalRights} /> | ||
<LegalStack.Screen name="VideoPage" component={VideoPage} /> | ||
</LegalStack.Navigator> | ||
); | ||
} |
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,18 +1,16 @@ | ||
import React from 'react'; | ||
import { createNativeStackNavigator } from '@react-navigation/native-stack'; | ||
import index from '../../screens/SeekHelp/index'; | ||
import { SeekHelpParams } from '../types'; | ||
import SeekHelp from '@/screens/SeekHelp'; | ||
import ResourceList from '@/screens/SeekHelp/ResourceList'; | ||
import { SeekHelpStackParams } from '../types'; | ||
|
||
const SeekHelpStack = createNativeStackNavigator<SeekHelpParams>(); | ||
const SeekHelpStack = createNativeStackNavigator<SeekHelpStackParams>(); | ||
|
||
export default function SeekHelpNavigator() { | ||
return ( | ||
<SeekHelpStack.Navigator | ||
screenOptions={{ | ||
headerShown: false, | ||
}} | ||
> | ||
<SeekHelpStack.Screen name="Name" component={index} /> | ||
<SeekHelpStack.Navigator> | ||
<SeekHelpStack.Screen name="SeekHelp" component={SeekHelp} /> | ||
<SeekHelpStack.Screen name="ResourceList" component={ResourceList} /> | ||
</SeekHelpStack.Navigator> | ||
); | ||
} |
Oops, something went wrong.