BlueWallet/screen/wallets.js

34 lines
673 B
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-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-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;