mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 01:40:12 +01:00
FIX: Missing screen
This commit is contained in:
parent
f55ad59439
commit
fbab932f04
@ -12,6 +12,7 @@ import {
|
||||
WalletsAddMultisigStep2Component,
|
||||
WalletsAddMultisigHelpComponent,
|
||||
ImportWalletDiscoveryComponent,
|
||||
ImportSpeedComponent,
|
||||
} from './LazyLoadAddWalletStack';
|
||||
import { AddWalletStackParamList } from '../typings/NavigationTypes';
|
||||
import navigationStyle from '../components/navigationStyle';
|
||||
@ -39,6 +40,11 @@ const AddWalletStack = () => {
|
||||
component={ImportWalletComponent}
|
||||
options={navigationStyle({ title: loc.wallets.import_title })(theme)}
|
||||
/>
|
||||
<Stack.Screen
|
||||
name="ImportSpeed"
|
||||
component={ImportSpeedComponent}
|
||||
options={navigationStyle({ statusBarStyle: 'light', title: loc.wallets.import_title })(theme)}
|
||||
/>
|
||||
<Stack.Screen
|
||||
name="ImportWalletDiscovery"
|
||||
component={ImportWalletDiscoveryComponent}
|
||||
|
@ -5,6 +5,7 @@ import { View, ActivityIndicator, StyleSheet } from 'react-native';
|
||||
const WalletsAdd = lazy(() => import('../screen/wallets/Add'));
|
||||
const ImportCustomDerivationPath = lazy(() => import('../screen/wallets/importCustomDerivationPath'));
|
||||
const ImportWalletDiscovery = lazy(() => import('../screen/wallets/importDiscovery'));
|
||||
const ImportSpeed = lazy(() => import('../screen/wallets/importSpeed'));
|
||||
const ImportWallet = lazy(() => import('../screen/wallets/import'));
|
||||
const PleaseBackup = lazy(() => import('../screen/wallets/PleaseBackup'));
|
||||
const PleaseBackupLNDHub = lazy(() => import('../screen/wallets/pleaseBackupLNDHub'));
|
||||
@ -44,6 +45,12 @@ export const ImportWalletComponent = () => (
|
||||
</Suspense>
|
||||
);
|
||||
|
||||
export const ImportSpeedComponent = () => (
|
||||
<Suspense fallback={<LoadingIndicator />}>
|
||||
<ImportSpeed />
|
||||
</Suspense>
|
||||
);
|
||||
|
||||
export const PleaseBackupComponent = () => (
|
||||
<Suspense fallback={<LoadingIndicator />}>
|
||||
<PleaseBackup />
|
||||
|
@ -2,6 +2,7 @@ export type AddWalletStackParamList = {
|
||||
AddWallet: undefined;
|
||||
ImportWallet: undefined;
|
||||
ImportWalletDiscovery: undefined;
|
||||
ImportSpeed: undefined;
|
||||
ImportCustomDerivationPath: undefined;
|
||||
PleaseBackup: undefined;
|
||||
PleaseBackupLNDHub: undefined;
|
||||
|
Loading…
Reference in New Issue
Block a user