aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--App.tsx7
-rw-r--r--src/assets/sign_in_logo.pngbin0 -> 7298 bytes
2 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,
}
});
diff --git a/src/assets/sign_in_logo.png b/src/assets/sign_in_logo.png
new file mode 100644
index 00000000..8fa1aa5a
--- /dev/null
+++ b/src/assets/sign_in_logo.png
Binary files differ