mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-04 04:13:49 +01:00
35 lines
860 B
JavaScript
35 lines
860 B
JavaScript
import React, { Component } from 'react'
|
|
import { StackNavigator } from 'react-navigation'
|
|
|
|
import WalletsList from './wallets/list'
|
|
import AddWallet from './wallets/add'
|
|
import WalletDetails from './wallets/details'
|
|
import WalletExport from './wallets/export'
|
|
import scanQrWifLegacyAddress from './wallets/scanQrWifLegacyAddress'
|
|
import scanQrWifSegwitP2SHAddress from './wallets/scanQrWifSegwitP2SHAddress'
|
|
|
|
const WalletsNavigator = StackNavigator({
|
|
WalletsList: {
|
|
screen: WalletsList
|
|
},
|
|
AddWallet: {
|
|
screen: AddWallet
|
|
},
|
|
ScanQrWifLegacyAddress: {
|
|
screen: scanQrWifLegacyAddress
|
|
},
|
|
ScanQrWifSegwitP2SHAddress: {
|
|
screen: scanQrWifSegwitP2SHAddress
|
|
},
|
|
WalletDetails: {
|
|
screen: WalletDetails
|
|
},
|
|
WalletExport: {
|
|
screen: WalletExport
|
|
}
|
|
}, {
|
|
headerMode: 'none',
|
|
mode: 'modal'
|
|
})
|
|
|
|
export default WalletsNavigator
|