aboutsummaryrefslogtreecommitdiff
path: root/App.tsx
diff options
context:
space:
mode:
authorJustin Shillingford <jgs272@cornell.edu>2020-06-25 18:08:08 -0400
committerJustin Shillingford <jgs272@cornell.edu>2020-06-25 18:08:08 -0400
commitd0bfa544dc8f72c048d742cc9357cab3c199a25f (patch)
tree9ac1039cd269e9a90b967ca985916915ee74b60a /App.tsx
parent7d18532bcbced0e87fcc881eae0b0d7dddf265fd (diff)
Added Tagg logo to Sign In Page
Diffstat (limited to 'App.tsx')
-rw-r--r--App.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/App.tsx b/App.tsx
index bb9d3c45..5ec3b5e8 100644
--- a/App.tsx
+++ b/App.tsx
@@ -16,6 +16,7 @@ import {
View,
Text,
StatusBar,
+ Image,
} from 'react-native';
import {
@@ -35,7 +36,7 @@ const App = () => {
<>
<View style={styles.container}>
<LinearGradient colors={['#8F00FF', '#6EE7E7']} style={styles.linearGradient} useAngle={true} angle={154.72} angleCenter={{x:0.5,y:0.5}}>
-
+ <Image source={require('./src/assets/sign_in_logo.png')} style={styles.logo}/>
</LinearGradient>
</View>
</>
@@ -49,6 +50,10 @@ const styles = StyleSheet.create({
},
linearGradient: {
flex: 1,
+ alignItems: 'center',
+ },
+ logo: {
+ top: 108,
}
});