You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.1 KiB

import { createBottomTabNavigator } from 'react-navigation';
7 years ago
7 years ago
import transactions from './screen/transactions';
import wallets from './screen/wallets';
import send from './screen/send';
import settings from './screen/settings';
7 years ago
import receive from './screen/receive';
7 years ago
/** @type {AppStorage} */
7 years ago
let BlueApp = require('./BlueApp');
7 years ago
const Tabs = createBottomTabNavigator(
7 years ago
{
Wallets: {
screen: wallets,
7 years ago
path: 'wallets',
7 years ago
},
Transactions: {
screen: transactions,
7 years ago
path: 'trans',
7 years ago
},
Send: {
screen: send,
7 years ago
path: 'cart',
7 years ago
},
Receive: {
screen: receive,
7 years ago
path: 'receive',
7 years ago
},
Settings: {
screen: settings,
7 years ago
path: 'settings',
},
6 years ago
//
7 years ago
},
{
tabBarPosition: 'bottom',
animationEnabled: true,
6 years ago
tabBarVisible: false,
7 years ago
tabBarOptions: {
showLabel: false,
7 years ago
activeTintColor: BlueApp.settings.foregroundColor,
7 years ago
activeBackgroundColor: '#33bdf1',
inactiveBackgroundColor: BlueApp.settings.brandingColor,
7 years ago
inactiveTintColor: BlueApp.settings.foregroundColor,
7 years ago
},
},
);
7 years ago
7 years ago
export default Tabs;