BlueWallet/MainBottomTabs.js

24 lines
401 B
JavaScript
Raw Normal View History

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