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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import React from 'react';
import {View, Text, StyleSheet, TouchableOpacity} from 'react-native';
import R from '../../assets/R';
import HeaderBack from '../../components/Header/HeaderBack';
import {getFontXD} from '../../Config/Functions';
import {useNavigation} from '@react-navigation/native';
import AppText from '../../components/AppText';
const Customer = (props) => {
const navigate = useNavigation();
return (
<View style={{flex: 1}}>
<HeaderBack title={'Customer'} />
<View style={styles.container}>
<AppText
i18nKey={'Features_develop'}
style={{
fontSize: 18,
fontWeight: 'bold',
textAlign: 'center',
}}
/>
</View>
</View>
);
};
export default Customer;
const styles = StyleSheet.create({
txtTitle: {
fontSize: getFontXD(42),
color: '#001C51',
paddingVertical: 15,
},
containerItem: {
borderBottomWidth: 0.7,
borderBottomColor: R.colors.borderGray,
paddingHorizontal: 20,
},
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
paddingTop: 20,
},
});