TransferView.js 1.01 KB
Newer Older
Giang Tran committed
1
import React from 'react';
Giang Tran committed
2 3
import {View, Text, StyleSheet} from 'react-native';
import HeaderBack from '../../../components/Header/HeaderBack';
Giang Tran committed
4 5
import TextField from '../../../components/Input/TextField';
import TextMulti from '../../../components/Input/TextMulti';
Giang Tran committed
6 7
import Button from '../../../components/Button';
import {HEIGHTXD} from '../../../Config/Functions';
Giang Tran committed
8
import AppText from '../../../components/AppText';
Giang Tran committed
9 10
const TransferView = (props) => {
  return (
Giang Tran committed
11
    <View style={{flex: 1}}>
Giang Tran committed
12
      <HeaderBack title={'Transfer'} />
Giang Tran committed
13 14 15 16 17 18 19
      <View
        style={{
          flex: 1,
          paddingHorizontal: 20,
          justifyContent: 'center',
          alignItems: 'center',
        }}>
Giang Tran committed
20 21
        <AppText
          i18nKey={'Features_develop'}
Giang Tran committed
22 23 24 25
          style={{
            fontSize: 18,
            fontWeight: 'bold',
            textAlign: 'center',
Giang Tran committed
26
          }}
Giang Tran committed
27
        />
Giang Tran committed
28
      </View>
Giang Tran committed
29 30 31 32
    </View>
  );
};

Giang Tran committed
33 34 35 36 37 38
const styles = StyleSheet.create({
  containerBtn: {
    marginBottom: 15,
  },
});

Giang Tran committed
39
export default TransferView;