diff options
author | Justin Shillingford <jgs272@cornell.edu> | 2020-06-25 18:08:08 -0400 |
---|---|---|
committer | Justin Shillingford <jgs272@cornell.edu> | 2020-06-25 18:08:08 -0400 |
commit | d0bfa544dc8f72c048d742cc9357cab3c199a25f (patch) | |
tree | 9ac1039cd269e9a90b967ca985916915ee74b60a /App.tsx | |
parent | 7d18532bcbced0e87fcc881eae0b0d7dddf265fd (diff) |
Added Tagg logo to Sign In Page
Diffstat (limited to 'App.tsx')
-rw-r--r-- | App.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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, } }); |