Commit b20a248d by Giang Tran

update screen legaldocument

parent 3cd06fce
...@@ -903,7 +903,7 @@ ...@@ -903,7 +903,7 @@
CODE_SIGN_ENTITLEMENTS = Invest/Invest.entitlements; CODE_SIGN_ENTITLEMENTS = Invest/Invest.entitlements;
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 16; CURRENT_PROJECT_VERSION = 17;
DEVELOPMENT_TEAM = MXZ24GRH48; DEVELOPMENT_TEAM = MXZ24GRH48;
ENABLE_BITCODE = NO; ENABLE_BITCODE = NO;
GCC_PREPROCESSOR_DEFINITIONS = ( GCC_PREPROCESSOR_DEFINITIONS = (
...@@ -936,7 +936,7 @@ ...@@ -936,7 +936,7 @@
CODE_SIGN_ENTITLEMENTS = Invest/Invest.entitlements; CODE_SIGN_ENTITLEMENTS = Invest/Invest.entitlements;
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 16; CURRENT_PROJECT_VERSION = 17;
DEVELOPMENT_TEAM = MXZ24GRH48; DEVELOPMENT_TEAM = MXZ24GRH48;
INFOPLIST_FILE = Invest/Info.plist; INFOPLIST_FILE = Invest/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
</dict> </dict>
</dict> </dict>
<key>NSLocationWhenInUseUsageDescription</key> <key>NSLocationWhenInUseUsageDescription</key>
<string/> <string></string>
<key>NSPhotoLibraryUsageDescription</key> <key>NSPhotoLibraryUsageDescription</key>
<string>To upload images</string> <string>To upload images</string>
<key>UIAppFonts</key> <key>UIAppFonts</key>
......
...@@ -98,7 +98,20 @@ export const Gender = { ...@@ -98,7 +98,20 @@ export const Gender = {
male: 0, male: 0,
female: 1, female: 1,
}; };
export const converType = (type) => {
if (type == 'DEPOSIT') return 'Nạp tiền';
return 'Rút tiền';
};
export const converStatus = (status) => {
switch (status) {
case 0:
return 'Chờ xử lý';
case 1:
return 'Thành công';
case 2:
return 'Huỷ';
}
};
export const toPriceVnd = (str) => { export const toPriceVnd = (str) => {
if (str) { if (str) {
let stringPrice = str.toString().split('.'); let stringPrice = str.toString().split('.');
......
import React from 'react'; import React from 'react';
import {View, Text} from 'react-native'; import {View, Text} from 'react-native';
import HeaderBack from '../../components/Header/HeaderBack'; import HeaderBack from '../../components/Header/HeaderBack';
import {connect} from 'react-redux';
import {WebView} from 'react-native-webview';
const Contract = (props) => { const Contract = (props) => {
console.log(props.user);
return ( return (
<View style={{flex: 1}}> <View style={{flex: 1}}>
<HeaderBack title={'Hợp đồng'} /> <HeaderBack isWhite={true} title={'Hợp đồng'} />
<View
style={{ <WebView
flex: 1, androidHardwareAccelerationDisabled={true}
paddingHorizontal: 20, source={{
justifyContent: 'center', uri:
alignItems: 'center', 'http://api.dcvinvest.com/webview/contracts/show/' + props.user.uid,
}}> }}
<Text />
style={{
fontSize: 18,
fontWeight: 'bold',
textAlign: 'center',
}}>
Tính năng đang được phát trin, vui lòng quay li sau!
</Text>
</View>
</View> </View>
); );
}; };
export default Contract; const mapStateToProps = (state) => {
return {
user: state.userReducer,
};
};
export default connect(mapStateToProps, {})(Contract);
...@@ -4,27 +4,26 @@ import HistoryView from './HistoryView'; ...@@ -4,27 +4,26 @@ import HistoryView from './HistoryView';
import {getListTransaction} from '../../../apis/Functions/Widthdraw'; import {getListTransaction} from '../../../apis/Functions/Widthdraw';
const History = (props) => { const History = (props) => {
const [selected, setSelected] = useState(''); const [selected, setSelected] = useState('ALL');
const [page, setPage] = useState(1); const [page, setPage] = useState(1);
const [data, setData] = useState([]); const [data, setData] = useState([]);
const [tottalPage, setTotalPage] = useState(1); const [tottalPage, setTotalPage] = useState(1);
const [isRefresh, setisRefresh] = useState(false); const [isRefresh, setisRefresh] = useState(false);
const [fillters, setFillters] = useState([]);
useEffect(() => { useEffect(() => {
getData(); getData();
}, []); }, []);
// useEffect(() => { useEffect(() => {
// getData(); getData();
// }, [selected]); }, [selected]);
const getData = async () => { const getData = async () => {
setisRefresh(true); setisRefresh(true);
setPage(1); setPage(1);
const res = await getListTransaction({ const res = await getListTransaction({
keyword: '', keyword: '',
type: 'ALL', type: selected,
platform: Platform.OS, platform: Platform.OS,
page_size: 10, page_size: 10,
status: -1, status: -1,
...@@ -32,11 +31,12 @@ const History = (props) => { ...@@ -32,11 +31,12 @@ const History = (props) => {
start_date: '', start_date: '',
end_date: '', end_date: '',
}); });
console.log(res);
setisRefresh(false); setisRefresh(false);
if ((res.data.code = 200 && res.data.data)) { if ((res.data.code = 200 && res.data.data)) {
setData(res.data.data); setData(res.data.data);
setTotalPage(res.data.meta.pages); setTotalPage(res.data.meta.pages);
console.log(res.data.data);
} else { } else {
Alert.alert('Thông báo!', res.data.message); Alert.alert('Thông báo!', res.data.message);
} }
...@@ -47,8 +47,7 @@ const History = (props) => { ...@@ -47,8 +47,7 @@ const History = (props) => {
}; };
const onLoadMore = () => { const onLoadMore = () => {
console.log(tottalPage); if (page < tottalPage) getDataLoadMore();
// if (page < tottalPage) getDataLoadMore();
}; };
const getDataLoadMore = async () => { const getDataLoadMore = async () => {
...@@ -77,6 +76,8 @@ const History = (props) => { ...@@ -77,6 +76,8 @@ const History = (props) => {
isRefresh={isRefresh} isRefresh={isRefresh}
onRefresh={onRefresh} onRefresh={onRefresh}
data={data} data={data}
selected={selected}
setSelected={setSelected}
/> />
); );
}; };
......
import React, {useState} from 'react'; import React, {useState} from 'react';
import {View, Text, FlatList, TouchableOpacity, StyleSheet} from 'react-native'; import {
View,
Text,
FlatList,
TouchableOpacity,
StyleSheet,
ScrollView,
} from 'react-native';
import HeaderBack from '../../../components/Header/HeaderBack'; import HeaderBack from '../../../components/Header/HeaderBack';
import Item from './Item'; import Item from './Item';
import {getFontXD} from '../../../Config/Functions'; import {getFontXD} from '../../../Config/Functions';
const Fillters = [ const Fillters = [
{ {
id: '1', id: '1',
name: 'Tất cả', name: 'Tất cả',
value: 'all', value: 'ALL',
}, },
{ {
id: '4', id: '2',
name: 'Rút tiền', name: 'Nạp tiền',
value: 'withdraw', value: 'DEPOSIT',
}, },
{ {
id: '5', id: '3',
name: 'Nạp tiền', name: 'Rút tiền',
value: 'deposit', value: 'WITHDRAW',
}, },
{ {
id: '6', id: '4',
name: 'Chuyển khoản', name: 'Chuyển khoản',
value: 'exchange', value: 'TRANSFER',
}, },
]; ];
// const data = [
// {
// id: '1',
// money: 10000000,
// content: 'Hoạt động: Nạp tiền',
// status: 1,
// date: '20/02/2021',
// },
// {
// id: '2',
// money: 2000000,
// content: 'Hoạt động: Nạp tiền',
// status: 1,
// date: '20/02/2021',
// },
// {
// id: '3',
// day: '20',
// money: 3000000,
// content: 'Hoạt động: Nạp tiền',
// status: 1,
// date: '20/02/2021',
// },
// {
// id: '4',
// money: 4000000,
// content: 'Hoạt động: Rút tiền',
// status: 2,
// date: '20/02/2021',
// },
// {
// id: '5',
// money: 9000000,
// content: 'Hoạt động: Nạp tiền',
// status: 1,
// date: '20/02/2021',
// },
// {
// id: '6',
// money: 4000000,
// content: 'Hoạt động: Rút tiền',
// status: 2,
// date: '20/02/2021',
// },
// {
// id: '7',
// money: 9000000,
// content: 'Hoạt động: Nạp tiền',
// status: 1,
// date: '20/02/2021',
// },
// ];
const HistoryView = (props) => { const HistoryView = (props) => {
const {isRefresh, onRefresh, onLoadMore, data} = props; const {isRefresh, onRefresh, onLoadMore, data, selected, setSelected} = props;
const [selected, setSelected] = useState('1');
return ( return (
<View style={{flex: 1}}> <View style={{flex: 1}}>
<HeaderBack isWhite={true} title={'LỊCH SỬ'} /> <HeaderBack isWhite={true} title={'LỊCH SỬ'} />
<View style={{flex: 1}}> <View style={{flex: 1}}>
<View style={styles.headerContainer}> <View style={styles.headerContainer}>
<FlatList {Fillters.map((e) => (
showsHorizontalScrollIndicator={false} <TouchableOpacity
horizontal key={e.value}
data={Fillters} onPress={() => setSelected(e.value)}
keyExtractor={(item) => item.id} style={[
renderItem={({item}) => ( styles.itemFillter,
<TouchableOpacity selected == e.value ? {borderColor: '#1473E6'} : null,
onPress={() => setSelected(item.id)} ]}>
<Text
style={[ style={[
styles.itemFillter, styles.txtFillter,
selected == item.id ? {borderColor: '#1473E6'} : null, selected == e.value ? {color: '#1473E6'} : {},
]}> ]}>
<Text {e.name}
style={[ </Text>
styles.txtFillter, </TouchableOpacity>
selected == item.id ? {color: '#1473E6'} : {}, ))}
]}>
{item.name}
</Text>
</TouchableOpacity>
)}
/>
</View> </View>
<FlatList
style={{flex: 1}} {data.length == 0 ? (
refreshing={isRefresh} <View
onRefresh={onRefresh} style={{justifyContent: 'center', alignItems: 'center', flex: 1}}>
onEndReachedThreshold={0.01} <Text
onEndReached={(info) => { style={{
onLoadMore(); fontSize: getFontXD(46),
}} fontWeight: 'bold',
keyExtractor={(item) => item.id} }}>
data={data} Không có giao dch nào!
renderItem={({item}) => <Item item={item} />} </Text>
/> </View>
) : (
<FlatList
style={{flex: 1}}
refreshing={isRefresh}
onRefresh={onRefresh}
onEndReachedThreshold={0.01}
onEndReached={(info) => {
onLoadMore();
}}
keyExtractor={(item) => item.id}
data={data}
renderItem={({item}) => <Item item={item} />}
/>
)}
</View> </View>
</View> </View>
); );
...@@ -132,6 +94,10 @@ const styles = StyleSheet.create({ ...@@ -132,6 +94,10 @@ const styles = StyleSheet.create({
headerContainer: { headerContainer: {
paddingVertical: 10, paddingVertical: 10,
backgroundColor: 'white', backgroundColor: 'white',
flexDirection: 'row',
justifyContent: 'space-around',
alignItems: 'center',
paddingHorizontal: 10,
}, },
itemFillter: { itemFillter: {
borderRadius: 10, borderRadius: 10,
...@@ -139,7 +105,6 @@ const styles = StyleSheet.create({ ...@@ -139,7 +105,6 @@ const styles = StyleSheet.create({
paddingHorizontal: 10, paddingHorizontal: 10,
borderWidth: 1, borderWidth: 1,
borderColor: '#929292', borderColor: '#929292',
marginLeft: 15,
minWidth: 70, minWidth: 70,
}, },
txtFillter: { txtFillter: {
......
...@@ -5,6 +5,8 @@ import { ...@@ -5,6 +5,8 @@ import {
HEIGHTXD, HEIGHTXD,
WIDTHXD, WIDTHXD,
toPriceVnd, toPriceVnd,
converType,
converStatus,
} from '../../../Config/Functions'; } from '../../../Config/Functions';
import R from '../../../assets/R'; import R from '../../../assets/R';
import Block from '../../../components/Block'; import Block from '../../../components/Block';
...@@ -16,62 +18,46 @@ const Item = (props) => { ...@@ -16,62 +18,46 @@ const Item = (props) => {
// console.log('item---', item.status); // console.log('item---', item.status);
const navigate = useNavigation(); const navigate = useNavigation();
return ( return (
<TouchableOpacity onPress={() => console.log('HEllo')}> <View style={styles.container}>
<View style={styles.container}> <Block flex={1} row>
<Block flex={1} row> <View style={styles.wrapLeft} />
<View style={styles.wrapLeft} /> <View style={styles.wrapDate}>
<View style={styles.wrapDate}> <Image source={{uri: item.icon}} style={styles.imgIcon} />
{item.status == 1 ? ( </View>
<Image source={R.images.iconRecharge} style={styles.imgIcon} /> <Block
) : ( style={{justifyContent: 'center'}}
<Image source={R.images.iconWithdrawal} style={styles.imgIcon} /> padding={[5, 10]}
)} space={'between'}
</View> flex={1}>
<Block <View
style={{justifyContent: 'center'}} style={{
padding={[5, 10]} flexDirection: 'row',
space={'between'} justifyContent: 'space-between',
flex={1}> }}>
<View <View
style={{ style={{
flexDirection: 'row', alignItems: 'flex-start',
justifyContent: 'space-between',
}}> }}>
<View <Text style={styles.txtBlack}>
style={{ {converType(item.transection_category)}
alignItems: 'flex-start', </Text>
}}> <Text style={styles.txt}>{item.transection_date_timestamp}</Text>
<Text style={styles.txtBlack}>{item.content}</Text> </View>
<Text style={styles.txt}>{item.date}</Text>
</View>
<View style={{alignItems: 'flex-end'}}> <View style={{alignItems: 'flex-end'}}>
{item.status == 1 ? ( <Text
<Text style={[
style={{ styles.txtMoney,
fontSize: getFontXD(42), item.status == 1 ? {color: '#1473E6'} : null,
fontWeight: 'bold', ]}>
color: '#F99D1D', {toPriceVnd(item.amount)} Đ
}}> </Text>
{toPriceVnd(item.money)} Đ <Text style={styles.txt}>{converStatus(item.status)}</Text>
</Text>
) : (
<Text
style={{
fontSize: getFontXD(42),
fontWeight: 'bold',
color: '#1473E6',
}}>
{toPriceVnd(item.money)} Đ
</Text>
)}
<Text style={styles.txt}>Hoàn tt</Text>
</View>
</View> </View>
</Block> </View>
</Block> </Block>
</View> </Block>
</TouchableOpacity> </View>
); );
}; };
...@@ -109,10 +95,20 @@ const styles = StyleSheet.create({ ...@@ -109,10 +95,20 @@ const styles = StyleSheet.create({
txt: { txt: {
fontSize: getFontXD(36), fontSize: getFontXD(36),
color: '#C4C4C4', color: '#C4C4C4',
marginTop: 10,
fontStyle: 'italic',
}, },
imgIcon: { imgIcon: {
width: WIDTHXD(178), width: WIDTHXD(178),
height: HEIGHTXD(178), height: HEIGHTXD(178),
resizeMode: 'contain', resizeMode: 'contain',
}, },
txtMoney: {
fontSize: getFontXD(42),
fontWeight: 'bold',
color: '#F99D1D',
},
txtBlack: {
fontSize: getFontXD(42),
},
}); });
...@@ -5,17 +5,13 @@ import { ...@@ -5,17 +5,13 @@ import {
HEIGHTXD, HEIGHTXD,
WIDTHXD, WIDTHXD,
toPriceVnd, toPriceVnd,
converType,
} from '../../../../Config/Functions'; } from '../../../../Config/Functions';
import R from '../../../../assets/R'; import R from '../../../../assets/R';
import Block from '../../../../components/Block'; import Block from '../../../../components/Block';
import {useNavigation} from '@react-navigation/native'; import {useNavigation} from '@react-navigation/native';
import {DETAIL_REQUIRE_MONEY} from '../../../../routers/ScreenNames'; import {DETAIL_REQUIRE_MONEY} from '../../../../routers/ScreenNames';
const converType = (type) => {
if ((type = 'DEPOSIT')) return 'Nạp tiền';
return 'Rút tiền';
};
const Item = (props) => { const Item = (props) => {
const {item} = props; const {item} = props;
const navigate = useNavigation(); const navigate = useNavigation();
......
import React from 'react';
import {View, Text} from 'react-native';
import HeaderBack from '../../components/Header/HeaderBack';
const LegalDocument = (props) => {
return (
<View style={{flex: 1}}>
<HeaderBack title={'Giấy tờ pháp lý'} />
</View>
);
};
export default LegalDocument;
...@@ -27,11 +27,6 @@ const NewFeed = (props) => { ...@@ -27,11 +27,6 @@ const NewFeed = (props) => {
style: {backgroundColor: 'white'}, style: {backgroundColor: 'white'},
}}> }}>
<Tab.Screen <Tab.Screen
name="CALENDAR"
component={Calendar}
options={{tabBarLabel: 'Lịch thị trường'}}
/>
<Tab.Screen
name="Tab1" name="Tab1"
component={Tab1} component={Tab1}
options={{tabBarLabel: 'Tin tức'}} options={{tabBarLabel: 'Tin tức'}}
...@@ -51,6 +46,11 @@ const NewFeed = (props) => { ...@@ -51,6 +46,11 @@ const NewFeed = (props) => {
component={Trading} component={Trading}
options={{tabBarLabel: 'Biểu đồ'}} options={{tabBarLabel: 'Biểu đồ'}}
/> />
<Tab.Screen
name="CALENDAR"
component={Calendar}
options={{tabBarLabel: 'Lịch thị trường'}}
/>
</Tab.Navigator> </Tab.Navigator>
</View> </View>
</View> </View>
......
...@@ -21,6 +21,11 @@ const Fillters = [ ...@@ -21,6 +21,11 @@ const Fillters = [
name: 'Rút tiền', name: 'Rút tiền',
value: 'WITHDRAW', value: 'WITHDRAW',
}, },
{
id: '4',
name: 'Chuyển khoản',
value: 'TRANSFER',
},
]; ];
const NotificaitonView = (props) => { const NotificaitonView = (props) => {
...@@ -48,17 +53,29 @@ const NotificaitonView = (props) => { ...@@ -48,17 +53,29 @@ const NotificaitonView = (props) => {
</TouchableOpacity> </TouchableOpacity>
))} ))}
</View> </View>
<FlatList {data.length == 0 ? (
keyExtractor={(item) => item.id} <View style={{justifyContent: 'center', alignItems: 'center', flex: 1}}>
data={data} <Text
refreshing={isRefresh} style={{
onRefresh={onRefresh} fontSize: getFontXD(46),
onEndReachedThreshold={0.01} fontWeight: 'bold',
onEndReached={(info) => { }}>
onLoadMore(); Không có thông báo nào!
}} </Text>
renderItem={({item}) => <Item item={item} />} </View>
/> ) : (
<FlatList
keyExtractor={(item) => item.id}
data={data}
refreshing={isRefresh}
onRefresh={onRefresh}
onEndReachedThreshold={0.01}
onEndReached={(info) => {
onLoadMore();
}}
renderItem={({item}) => <Item item={item} />}
/>
)}
</View> </View>
); );
}; };
...@@ -70,6 +87,7 @@ const styles = StyleSheet.create({ ...@@ -70,6 +87,7 @@ const styles = StyleSheet.create({
flexDirection: 'row', flexDirection: 'row',
justifyContent: 'space-around', justifyContent: 'space-around',
alignItems: 'center', alignItems: 'center',
paddingHorizontal: 10,
}, },
itemFillter: { itemFillter: {
borderRadius: 10, borderRadius: 10,
...@@ -77,7 +95,6 @@ const styles = StyleSheet.create({ ...@@ -77,7 +95,6 @@ const styles = StyleSheet.create({
paddingHorizontal: 10, paddingHorizontal: 10,
borderWidth: 1, borderWidth: 1,
borderColor: '#929292', borderColor: '#929292',
marginLeft: 15,
minWidth: 80, minWidth: 80,
justifyContent: 'center', justifyContent: 'center',
alignItems: 'center', alignItems: 'center',
...@@ -87,6 +104,10 @@ const styles = StyleSheet.create({ ...@@ -87,6 +104,10 @@ const styles = StyleSheet.create({
color: '#929292', color: '#929292',
fontWeight: 'bold', fontWeight: 'bold',
}, },
txtTitle: {
fontSize: getFontXD(46),
fontWeight: 'bold',
},
}); });
export default NotificaitonView; export default NotificaitonView;
...@@ -24,7 +24,6 @@ const Notifcation = (props) => { ...@@ -24,7 +24,6 @@ const Notifcation = (props) => {
page_index: 1, page_index: 1,
type: fillter, type: fillter,
}); });
console.log(res.data);
setisRefresh(false); setisRefresh(false);
if ((res.data.code = 200 && res.data.data)) { if ((res.data.code = 200 && res.data.data)) {
setData(res.data.data); setData(res.data.data);
......
...@@ -63,6 +63,7 @@ const images = { ...@@ -63,6 +63,7 @@ const images = {
iconCheck: require('./images/iconCheck.png'), iconCheck: require('./images/iconCheck.png'),
bgmedia: require('./images/bgmedia.jpeg'), bgmedia: require('./images/bgmedia.jpeg'),
bgLogin: require('./images/bgLogin.png'), bgLogin: require('./images/bgLogin.png'),
iconPaper: require('./images/iconPaper.png'),
}; };
export default images; export default images;
...@@ -14,6 +14,7 @@ import { ...@@ -14,6 +14,7 @@ import {
AUTHEN, AUTHEN,
PROFILE, PROFILE,
CONTRACT, CONTRACT,
LEGALDOCUMENT,
} from '../../routers/ScreenNames'; } from '../../routers/ScreenNames';
import {useNavigation} from '@react-navigation/native'; import {useNavigation} from '@react-navigation/native';
import {connect} from 'react-redux'; import {connect} from 'react-redux';
...@@ -51,6 +52,12 @@ const menus = [ ...@@ -51,6 +52,12 @@ const menus = [
screen: FEEDBACK, screen: FEEDBACK,
}, },
{ {
id: '7',
title: 'Giấy tờ pháp lý',
icon: R.images.iconPaper,
screen: LEGALDOCUMENT,
},
{
id: '5', id: '5',
title: 'Cài đặt', title: 'Cài đặt',
icon: R.images.iconSetting, icon: R.images.iconSetting,
......
...@@ -58,3 +58,5 @@ export const WALLETWITHDRAW = 'WALLETWITHDRAW'; ...@@ -58,3 +58,5 @@ export const WALLETWITHDRAW = 'WALLETWITHDRAW';
export const PACKETCQG = 'PACKETCQG'; export const PACKETCQG = 'PACKETCQG';
export const MEDIADETAIL = 'MEDIADETAIL'; export const MEDIADETAIL = 'MEDIADETAIL';
export const METHODPAYDETAIL = 'METHODPAYDETAIL'; export const METHODPAYDETAIL = 'METHODPAYDETAIL';
export const LEGALDOCUMENT = 'LEGALDOCUMENT';
...@@ -39,6 +39,7 @@ import WalletWithdraw from '../Screens/Action/Wallet/WalletWithdraw'; ...@@ -39,6 +39,7 @@ import WalletWithdraw from '../Screens/Action/Wallet/WalletWithdraw';
import PacketCQG from '../Screens/Account/PacrtCQG/PacketCQG'; import PacketCQG from '../Screens/Account/PacrtCQG/PacketCQG';
import MediaDetail from '../Screens/NewFeed/Media/MediaDetail'; import MediaDetail from '../Screens/NewFeed/Media/MediaDetail';
import MethodPayDetail from '../Screens/MethodPay/MethodPayDetail'; import MethodPayDetail from '../Screens/MethodPay/MethodPayDetail';
import LegaDocument from '../Screens/LegalDocument/LegalDocument';
import * as ScreenName from './ScreenNames'; import * as ScreenName from './ScreenNames';
...@@ -57,6 +58,7 @@ function MyStack(props) { ...@@ -57,6 +58,7 @@ function MyStack(props) {
headerMode={'none'} headerMode={'none'}
initialRouteName={ScreenName.AUTHEN}> initialRouteName={ScreenName.AUTHEN}>
<Stack.Screen name={ScreenName.LOGINSCREEN} component={Login} /> <Stack.Screen name={ScreenName.LOGINSCREEN} component={Login} />
<Stack.Screen name={ScreenName.LEGALDOCUMENT} component={LegaDocument} />
<Stack.Screen name={ScreenName.NOTIFICATION} component={Notification} /> <Stack.Screen name={ScreenName.NOTIFICATION} component={Notification} />
<Stack.Screen name={ScreenName.MEDIADETAIL} component={MediaDetail} /> <Stack.Screen name={ScreenName.MEDIADETAIL} component={MediaDetail} />
<Stack.Screen name={ScreenName.TABNAVIGATOR} component={TabNavigator} /> <Stack.Screen name={ScreenName.TABNAVIGATOR} component={TabNavigator} />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment