diff options
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, } }); |