-
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
8f908e2
commit 810bf50
Showing
16 changed files
with
968 additions
and
2 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,46 @@ | ||
import { Text, View } from 'react-native'; | ||
|
||
// import { colors } from '@/styles/colors'; | ||
|
||
interface TabBarItemProps { | ||
icon: React.ReactNode; | ||
label: string; | ||
focused: boolean; | ||
} | ||
|
||
//Inline styling required --> can't make a styles.ts in this directory otherwise it'll make a new bottom tab idk why | ||
export default function TabBarItem({ icon, label, focused }: TabBarItemProps) { | ||
return ( | ||
<View | ||
style={{ | ||
// backgroundColor: focused ? colors.orange : 'transparent', | ||
borderRadius: 10, | ||
height: 55, | ||
width: 66, | ||
marginTop: 10, | ||
}} | ||
> | ||
<View | ||
style={{ | ||
display: 'flex', | ||
justifyContent: 'center', | ||
alignItems: 'center', | ||
marginTop: 8, | ||
}} | ||
> | ||
{icon} | ||
<Text | ||
style={{ | ||
fontSize: 9, | ||
fontStyle: 'normal', | ||
fontWeight: '600', | ||
lineHeight: 21, | ||
// color: focused ? colors.orange : colors.grey, | ||
}} | ||
> | ||
{label} | ||
</Text> | ||
</View> | ||
</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,5 +1,25 @@ | ||
import { Text } from 'react-native'; | ||
import React from 'react'; | ||
import { Button, Text, TouchableOpacity, View } from 'react-native'; | ||
import { styles } from './styles'; | ||
|
||
export default function HomeScreen() { | ||
return <Text>HOME!!!</Text>; | ||
return ( | ||
<View style={styles.container}> | ||
<View style={styles.welcomeBox}> | ||
<Text style={styles.welcomeText}>Welcome!</Text> | ||
<Text style={styles.welcomeBlurb}> | ||
Welcome to a place of support and healing. This app is here to provide | ||
you with resources designed to help you reclaim your sense of safety | ||
and strength. Whether you’re seeking information, connection, or | ||
guidance, we’re here to offer tools that empower you on your journey. | ||
</Text> | ||
<Text style={styles.viewTutorialText}> | ||
Ready to start? Click “View Tutorial” to learn how to use the app. | ||
</Text> | ||
<TouchableOpacity style={styles.Button}> | ||
<Text style={styles.buttonText}>View Tutorial</Text> | ||
</TouchableOpacity> | ||
</View> | ||
</View> | ||
); | ||
} |
Oops, something went wrong.