1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
import React from 'react';
import {Image, StyleSheet, Text, View} from 'react-native';
import {PRIVATE_ACCOUNT} from '../../constants/strings';
import {normalize, SCREEN_HEIGHT} from '../../utils';
const PrivateProfile: React.FC = () => {
return (
<View style={styles.container}>
<Image source={require('../../assets/images/private-profile.png')} />
<View style={styles.privateAccountTextContainer}>
<Text style={styles.privateAccountTextStyle}>{PRIVATE_ACCOUNT}</Text>
</View>
</View>
);
};
const styles = StyleSheet.create({
container: {
alignItems: 'center',
justifyContent: 'center',
backgroundColor: '#F9F9F9',
height: SCREEN_HEIGHT * 0.4,
paddingBottom: SCREEN_HEIGHT * 0.1,
},
privateAccountTextContainer: {marginTop: '8%'},
privateAccountTextStyle: {
fontWeight: '600',
fontSize: normalize(18),
lineHeight: normalize(25),
color: '#828282',
},
});
export default PrivateProfile;
|