Business.js 1.13 KB
Newer Older
Giang Tran committed
1 2 3 4 5 6
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';
Giang Tran committed
7
import AppText from '../../components/AppText';
Giang Tran committed
8 9 10 11 12

const Business = (props) => {
  const navigate = useNavigation();
  return (
    <View style={{flex: 1}}>
Giang Tran committed
13
      <HeaderBack title={'GeneralBusiness'} />
Giang Tran committed
14
      <View style={styles.container}>
Giang Tran committed
15 16
        <AppText
          i18nKey={'Features_develop'}
Giang Tran committed
17 18 19 20
          style={{
            fontSize: 18,
            fontWeight: 'bold',
            textAlign: 'center',
Giang Tran committed
21 22
          }}
        />
Giang Tran committed
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
      </View>
    </View>
  );
};

export default Business;

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