-
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.
Merge pull request #36 from utmgdsc/feature/58/BottomNavigation
nav bar finally added
- Loading branch information
Showing
9 changed files
with
176 additions
and
42 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 |
---|---|---|
|
@@ -14,4 +14,4 @@ const Colors = { | |
BLUE: 'blue', | ||
}; | ||
|
||
export default Colors; | ||
export default Colors; |
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
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
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,22 @@ | ||
import React from 'react'; | ||
import { View, Text, StyleSheet } from 'react-native'; | ||
import Colors from '../../assets/colorConstants'; | ||
|
||
|
||
export default function SettingsScreen(): JSX.Element { | ||
return ( | ||
<View style={styles.container}> | ||
<Text> Welcome to Settings </Text> | ||
</View> | ||
); | ||
} | ||
|
||
const styles = StyleSheet.create({ | ||
container: { | ||
flex: 1, | ||
justifyContent: 'center', | ||
alignItems: 'center', | ||
backgroundColor: Colors.LIGHTFGREEN, | ||
}, | ||
|
||
}); |
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,32 @@ | ||
import React from 'react'; | ||
import { Text, StyleSheet, ScrollView } from 'react-native'; | ||
import { useFonts } from 'expo-font'; | ||
import Colors from '../../assets/colorConstants'; | ||
|
||
export default function YourForms(): JSX.Element { | ||
const [loaded] = useFonts({ | ||
Montserrat: require('../../assets/fonts/MontserratThinRegular.ttf'), | ||
Josefin: require('../../assets/fonts/JosefinSansThinRegular.ttf'), | ||
}); | ||
|
||
if (!loaded) { | ||
return <></>; | ||
} | ||
|
||
return ( | ||
<ScrollView contentContainerStyle={styles.container}> | ||
<Text> Complete your Food 🍉 Quiz! </Text> | ||
<Text> Complete your Energy 💡 Quiz! </Text> | ||
<Text> Complete your Transportation 🚗 Quiz! </Text> | ||
</ScrollView> | ||
); | ||
} | ||
|
||
const styles = StyleSheet.create({ | ||
container: { | ||
alignItems: 'center', | ||
flexGrow: 1, | ||
backgroundColor: Colors.LIGHTFGREEN, | ||
}, | ||
|
||
}); |