Fixed loading of setup pin screen from welcome screen for restore case. Renamed 'Next' to 'Restore' for confirm button on restore wallet screen. Removed 'Bitcoin' from welcome screen.

This commit is contained in:
M 2020-10-26 11:38:01 +02:00
parent 082a5f0b6c
commit e2c6cb6f4b
4 changed files with 5 additions and 8 deletions

View file

@ -137,8 +137,8 @@ Route<dynamic> createRoute(RouteSettings settings) {
case Routes.restoreWalletOptionsFromWelcome:
return CupertinoPageRoute<void>(
builder: (_) => getIt.get<SetupPinCodePage>(
param1: (BuildContext context, dynamic _) =>
Navigator.pushNamed(context, Routes.restoreWallet)),
param1: (PinCodeState<PinCodeWidget> context, dynamic _) =>
Navigator.pushNamed(context.context, Routes.restoreWallet)),
fullscreenDialog: true);
case Routes.seed: