BlueWallet/MainBottomTabs.js

39 lines
728 B
JavaScript
Raw Normal View History

2018-09-18 02:48:53 -04:00
import { createStackNavigator } from 'react-navigation';
2018-01-30 22:42:38 +00:00
2018-03-17 22:39:21 +02:00
import transactions from './screen/transactions';
import wallets from './screen/wallets';
import send from './screen/send';
2018-09-14 00:08:17 -04:00
import settings from './screen/settings';
2018-03-17 22:39:21 +02:00
import receive from './screen/receive';
2018-01-30 22:42:38 +00:00
2018-09-18 03:24:42 -04:00
const Tabs = createStackNavigator(
{
Wallets: {
screen: wallets,
path: 'wallets',
},
Transactions: {
screen: transactions,
path: 'trans',
},
Send: {
screen: send,
path: 'cart',
},
Receive: {
screen: receive,
path: 'receive',
},
Settings: {
screen: settings,
path: 'settings',
2018-01-30 22:42:38 +00:00
},
},
2018-09-18 03:24:42 -04:00
{
mode: 'modal',
2018-09-18 03:24:42 -04:00
headerMode: 'none',
2018-03-17 22:39:21 +02:00
},
2018-09-18 03:24:42 -04:00
);
2018-01-30 22:42:38 +00:00
2018-03-17 22:39:21 +02:00
export default Tabs;