BlueWallet/screen/wallets.js

58 lines
1.1 KiB
JavaScript
Raw Normal View History

2018-03-18 15:15:10 +00:00
import { StackNavigator } from 'react-navigation';
2018-01-30 22:42:38 +00:00
2018-03-18 15:15:10 +00:00
import WalletsList from './wallets/list';
import AddWallet from './wallets/add';
import WalletDetails from './wallets/details';
import WalletExport from './wallets/export';
import scanQrWif from './wallets/scanQrWif';
2018-01-30 22:42:38 +00:00
2018-06-28 02:43:28 +01:00
import details from './transactions/details';
import rbf from './transactions/RBF';
import createrbf from './transactions/RBF-create';
import receiveDetails from './receive/details';
2018-03-18 15:15:10 +00:00
const WalletsNavigator = StackNavigator(
{
WalletsList: {
screen: WalletsList,
},
AddWallet: {
screen: AddWallet,
},
ScanQrWif: {
screen: scanQrWif,
2018-03-18 15:15:10 +00:00
},
WalletDetails: {
screen: WalletDetails,
},
WalletExport: {
screen: WalletExport,
},
2018-06-28 02:43:28 +01:00
//
TransactionDetails: {
screen: details,
},
RBF: {
screen: rbf,
},
CreateRBF: {
screen: createrbf,
},
//
ReceiveDetails: {
screen: receiveDetails,
},
2018-01-30 22:42:38 +00:00
},
2018-03-18 15:15:10 +00:00
{
headerMode: 'none',
mode: 'modal',
2018-01-30 22:42:38 +00:00
},
2018-03-18 15:15:10 +00:00
);
2018-01-30 22:42:38 +00:00
2018-03-18 15:15:10 +00:00
export default WalletsNavigator;