diff options
| author | Kumar Damani <damani.kumar@gmail.com> | 2019-03-29 15:07:01 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-29 15:07:01 +0000 |
| commit | bab72114837b27eb939d5d9838b788f132478ce8 (patch) | |
| tree | 10884f5e6e6d649f1e05e64d595b22b94dcbdbbd /mobile | |
| parent | a2e5a2de701a6e0459538e6894c0be266778351e (diff) | |
| parent | d6920204095df4e5f68324212ac6938bafcc3ad4 (diff) | |
Merge pull request #62 from csc301-winter-2019/feat/36feat/31
Feat/36
Diffstat (limited to 'mobile')
| -rw-r--r-- | mobile/components/GreetingPage.js | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/mobile/components/GreetingPage.js b/mobile/components/GreetingPage.js index 9301fbc..0bc61cf 100644 --- a/mobile/components/GreetingPage.js +++ b/mobile/components/GreetingPage.js @@ -71,7 +71,10 @@ export default class GreetingPage extends Component { <View style={styles.titleContainer}> <Text style={styles.title}> - Welcome to Helpthehome! + See a homeless person who might need help? {"\n\n"}TELL US!! + </Text> + <Text style={styles.subtitle}> + Tell us where they are ⬇ {"\n\n"}(And don't worry, we won't force you to share your location) </Text> </View> @@ -125,18 +128,24 @@ const styles = StyleSheet.create( { alignItems: 'stretch' }, titleContainer: { - flex: 3, + flex: 4, //position: 'absolute', - marginTop: 205, + marginTop: 100, //flexGrow: 1 }, title: { color: '#FFF', - marginTop: 10, + padding: 35, textAlign: 'center', opacity: 0.9, + fontSize: 24, + fontStyle: 'italic', + }, + subtitle: { + color: "#FFF" , + padding: 20, + textAlign: "center", fontSize: 18, - fontStyle: 'italic' }, current_location_title: { color: '#FFF', |
