-
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
Showing
8 changed files
with
3,276 additions
and
4,442 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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 { NavigationContainer } from '@react-navigation/native'; | ||
import BottomTabNavigator from './BottomTabNavigator'; | ||
|
||
export default function AppNavigator() { | ||
return ( | ||
<NavigationContainer> | ||
<BottomTabNavigator /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import * as React from 'react'; | ||
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs'; | ||
import HealingResources from '@/screens/HealingResources'; | ||
import Home from '@/screens/Home'; | ||
import LegalRights from '@/screens/LegalRights/LegalRightsScreen'; | ||
import SeekHelp from '@/screens/SeekHelp'; | ||
|
||
const Tab = createBottomTabNavigator(); | ||
|
||
export default function MainTabNav() { | ||
return ( | ||
<> | ||
<Tab.Navigator initialRouteName="Home"> | ||
<Tab.Screen name="Home" component={Home} /> | ||
<Tab.Screen name="Legal Rights" component={LegalRights} /> | ||
<Tab.Screen name="Healing Resources" component={HealingResources} /> | ||
<Tab.Screen name="Seek Help" component={SeekHelp} /> | ||
</Tab.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
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,5 @@ | ||
import { Text } from 'react-native'; | ||
|
||
export default function ThemedHealingScreen() { | ||
return <Text>themed healing screen!</Text>; | ||
} |
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 { Text } from 'react-native'; | ||
|
||
export default function HealingResources() { | ||
return <Text>HELLO this is legal rights</Text>; | ||
} |