welcome screen image change

This commit is contained in:
feruz 2020-07-28 15:45:35 +03:00
parent 4574a6dfed
commit b9eac87f77
2 changed files with 12 additions and 5 deletions

View File

@ -10,11 +10,8 @@ const WelcomeScreen = ({ handleButtonPress }) => {
return (
<SafeAreaView style={styles.safeAreaView}>
<View style={styles.container}>
<Image
style={{ width: 205, height: 200, alignSelf: 'center' }}
source={require('../../../assets/ecency-logo.png')}
/>
<View>
<Image style={styles.mascot} source={require('../../../assets/love_mascot.png')} />
<View style={styles.topText}>
<Text style={styles.welcomeText}>Welcome to</Text>
<Text style={styles.ecencyText}>Ecency</Text>
</View>

View File

@ -17,6 +17,16 @@ export default EStyleSheet.create({
fontSize: 34,
color: '$primaryBlue',
},
mascot: {
position: 'absolute',
width: 160,
height: 227,
marginTop: 40,
right: 0,
},
topText: {
marginTop: 150,
},
sectionRow: {
flexDirection: 'row',
},