mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-09 12:19:24 +00:00
WIP consolidate xpub view
This commit is contained in:
parent
72d6e636f0
commit
6b88a1a4f1
4 changed files with 162 additions and 231 deletions
|
@ -6,22 +6,32 @@ import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
import 'package:flutter_svg/svg.dart';
|
import 'package:flutter_svg/svg.dart';
|
||||||
import 'package:qr_flutter/qr_flutter.dart';
|
import 'package:qr_flutter/qr_flutter.dart';
|
||||||
import 'package:stackwallet/notifications/show_flush_bar.dart';
|
import 'package:stackwallet/notifications/show_flush_bar.dart';
|
||||||
|
import 'package:stackwallet/providers/global/wallets_provider.dart';
|
||||||
|
import 'package:stackwallet/services/coins/manager.dart';
|
||||||
|
import 'package:stackwallet/services/mixins/xpubable.dart';
|
||||||
import 'package:stackwallet/utilities/assets.dart';
|
import 'package:stackwallet/utilities/assets.dart';
|
||||||
import 'package:stackwallet/utilities/clipboard_interface.dart';
|
import 'package:stackwallet/utilities/clipboard_interface.dart';
|
||||||
import 'package:stackwallet/utilities/text_styles.dart';
|
import 'package:stackwallet/utilities/text_styles.dart';
|
||||||
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
||||||
|
import 'package:stackwallet/utilities/util.dart';
|
||||||
import 'package:stackwallet/widgets/background.dart';
|
import 'package:stackwallet/widgets/background.dart';
|
||||||
|
import 'package:stackwallet/widgets/conditional_parent.dart';
|
||||||
import 'package:stackwallet/widgets/custom_buttons/app_bar_icon_button.dart';
|
import 'package:stackwallet/widgets/custom_buttons/app_bar_icon_button.dart';
|
||||||
|
import 'package:stackwallet/widgets/desktop/desktop_dialog.dart';
|
||||||
|
import 'package:stackwallet/widgets/desktop/desktop_dialog_close_button.dart';
|
||||||
|
import 'package:stackwallet/widgets/desktop/primary_button.dart';
|
||||||
|
import 'package:stackwallet/widgets/desktop/secondary_button.dart';
|
||||||
|
import 'package:stackwallet/widgets/loading_indicator.dart';
|
||||||
import 'package:stackwallet/widgets/rounded_white_container.dart';
|
import 'package:stackwallet/widgets/rounded_white_container.dart';
|
||||||
|
|
||||||
class XPubView extends ConsumerStatefulWidget {
|
class XPubView extends ConsumerStatefulWidget {
|
||||||
const XPubView({
|
const XPubView({
|
||||||
Key? key,
|
Key? key,
|
||||||
this.xpub,
|
required this.walletId,
|
||||||
this.clipboardInterface = const ClipboardWrapper(),
|
this.clipboardInterface = const ClipboardWrapper(),
|
||||||
}) : super(key: key);
|
}) : super(key: key);
|
||||||
|
|
||||||
final String? xpub;
|
final String walletId;
|
||||||
final ClipboardInterface clipboardInterface;
|
final ClipboardInterface clipboardInterface;
|
||||||
|
|
||||||
static const String routeName = "/xpub";
|
static const String routeName = "/xpub";
|
||||||
|
@ -31,11 +41,19 @@ class XPubView extends ConsumerStatefulWidget {
|
||||||
}
|
}
|
||||||
|
|
||||||
class _XPubViewState extends ConsumerState<XPubView> {
|
class _XPubViewState extends ConsumerState<XPubView> {
|
||||||
|
final bool isDesktop = Util.isDesktop;
|
||||||
|
|
||||||
late ClipboardInterface _clipboardInterface;
|
late ClipboardInterface _clipboardInterface;
|
||||||
|
late final Manager manager;
|
||||||
|
|
||||||
|
String? xpub;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
_clipboardInterface = widget.clipboardInterface;
|
_clipboardInterface = widget.clipboardInterface;
|
||||||
|
manager =
|
||||||
|
ref.read(walletsChangeNotifierProvider).getManager(widget.walletId);
|
||||||
|
|
||||||
super.initState();
|
super.initState();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -45,21 +63,26 @@ class _XPubViewState extends ConsumerState<XPubView> {
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> _copy() async {
|
Future<void> _copy() async {
|
||||||
await _clipboardInterface.setData(ClipboardData(text: widget.xpub));
|
await _clipboardInterface.setData(ClipboardData(text: xpub!));
|
||||||
unawaited(showFloatingFlushBar(
|
if (mounted) {
|
||||||
type: FlushBarType.info,
|
unawaited(showFloatingFlushBar(
|
||||||
message: "Copied to clipboard",
|
type: FlushBarType.info,
|
||||||
iconAsset: Assets.svg.copy,
|
message: "Copied to clipboard",
|
||||||
context: context,
|
iconAsset: Assets.svg.copy,
|
||||||
));
|
context: context,
|
||||||
|
));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Background(
|
return ConditionalParent(
|
||||||
child: Scaffold(
|
condition: !isDesktop,
|
||||||
backgroundColor: Theme.of(context).extension<StackColors>()!.background,
|
builder: (child) => Background(
|
||||||
appBar: AppBar(
|
child: Scaffold(
|
||||||
|
backgroundColor:
|
||||||
|
Theme.of(context).extension<StackColors>()!.background,
|
||||||
|
appBar: AppBar(
|
||||||
leading: AppBarBackButton(
|
leading: AppBarBackButton(
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
Navigator.of(context).pop();
|
Navigator.of(context).pop();
|
||||||
|
@ -92,32 +115,131 @@ class _XPubViewState extends ConsumerState<XPubView> {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
]),
|
],
|
||||||
body: Padding(
|
|
||||||
padding: const EdgeInsets.only(
|
|
||||||
top: 12,
|
|
||||||
left: 16,
|
|
||||||
right: 16,
|
|
||||||
),
|
),
|
||||||
child: Column(children: [
|
body: Padding(
|
||||||
if (widget.xpub != null)
|
padding: const EdgeInsets.only(
|
||||||
RoundedWhiteContainer(
|
top: 12,
|
||||||
padding: const EdgeInsets.all(12),
|
left: 16,
|
||||||
child: QrImage(data: widget.xpub!),
|
right: 16,
|
||||||
onPressed: () => _copy(),
|
|
||||||
),
|
),
|
||||||
if (widget.xpub != null)
|
child: child),
|
||||||
const SizedBox(
|
),
|
||||||
height: 8,
|
),
|
||||||
|
child: ConditionalParent(
|
||||||
|
condition: isDesktop,
|
||||||
|
builder: (child) => DesktopDialog(
|
||||||
|
maxWidth: 600,
|
||||||
|
maxHeight: double.infinity,
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
children: [
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(
|
||||||
|
left: 32,
|
||||||
|
),
|
||||||
|
child: Text(
|
||||||
|
"${manager.walletName} xPub",
|
||||||
|
style: STextStyles.desktopH2(context),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
DesktopDialogCloseButton(
|
||||||
|
onPressedOverride: Navigator.of(
|
||||||
|
context,
|
||||||
|
rootNavigator: true,
|
||||||
|
).pop,
|
||||||
|
),
|
||||||
|
AnimatedSize(
|
||||||
|
duration: const Duration(
|
||||||
|
milliseconds: 150,
|
||||||
|
),
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.fromLTRB(32, 0, 32, 32),
|
||||||
|
child: child,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
if (widget.xpub != null)
|
],
|
||||||
RoundedWhiteContainer(
|
),
|
||||||
padding: const EdgeInsets.all(12),
|
),
|
||||||
child: Text(widget.xpub!,
|
child: Column(
|
||||||
style: STextStyles.largeMedium14(context)),
|
children: [
|
||||||
onPressed: () => _copy(),
|
if (isDesktop) const SizedBox(height: 44),
|
||||||
)
|
FutureBuilder(
|
||||||
]),
|
future: (manager.wallet as XPubAble).xpub,
|
||||||
|
builder: (context, AsyncSnapshot<String> snapshot) {
|
||||||
|
if (snapshot.connectionState == ConnectionState.done &&
|
||||||
|
snapshot.hasData) {
|
||||||
|
xpub = snapshot.data!;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Column(
|
||||||
|
children: [
|
||||||
|
ConditionalParent(
|
||||||
|
condition: !isDesktop,
|
||||||
|
builder: (child) => RoundedWhiteContainer(
|
||||||
|
child: child,
|
||||||
|
),
|
||||||
|
child: xpub == null
|
||||||
|
? const SizedBox(
|
||||||
|
height: 300,
|
||||||
|
child: LoadingIndicator(),
|
||||||
|
)
|
||||||
|
: QrImage(
|
||||||
|
data: xpub!,
|
||||||
|
size: 280,
|
||||||
|
foregroundColor: Theme.of(context)
|
||||||
|
.extension<StackColors>()!
|
||||||
|
.accentColorDark,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 25),
|
||||||
|
RoundedWhiteContainer(
|
||||||
|
padding: const EdgeInsets.all(16),
|
||||||
|
borderColor: xpub == null
|
||||||
|
? null
|
||||||
|
: Theme.of(context)
|
||||||
|
.extension<StackColors>()!
|
||||||
|
.backgroundAppBar,
|
||||||
|
child: SelectableText(
|
||||||
|
xpub ?? "",
|
||||||
|
style: STextStyles.largeMedium14(context),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (isDesktop) const SizedBox(height: 32),
|
||||||
|
if (!isDesktop) const Spacer(),
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: SecondaryButton(
|
||||||
|
buttonHeight: ButtonHeight.xl,
|
||||||
|
label: "Cancel",
|
||||||
|
onPressed: Navigator.of(
|
||||||
|
context,
|
||||||
|
rootNavigator: true,
|
||||||
|
).pop,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 16),
|
||||||
|
Expanded(
|
||||||
|
child: PrimaryButton(
|
||||||
|
buttonHeight: ButtonHeight.xl,
|
||||||
|
label: "Copy",
|
||||||
|
enabled: xpub != null,
|
||||||
|
onPressed: _copy,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,177 +0,0 @@
|
||||||
import 'dart:async';
|
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:flutter/services.dart';
|
|
||||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
||||||
import 'package:qr_flutter/qr_flutter.dart';
|
|
||||||
import 'package:stackwallet/notifications/show_flush_bar.dart';
|
|
||||||
import 'package:stackwallet/providers/global/wallets_provider.dart';
|
|
||||||
import 'package:stackwallet/services/coins/manager.dart';
|
|
||||||
import 'package:stackwallet/services/mixins/xpubable.dart';
|
|
||||||
import 'package:stackwallet/utilities/assets.dart';
|
|
||||||
import 'package:stackwallet/utilities/clipboard_interface.dart';
|
|
||||||
import 'package:stackwallet/utilities/text_styles.dart';
|
|
||||||
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
|
||||||
import 'package:stackwallet/widgets/desktop/desktop_dialog.dart';
|
|
||||||
import 'package:stackwallet/widgets/desktop/desktop_dialog_close_button.dart';
|
|
||||||
import 'package:stackwallet/widgets/desktop/primary_button.dart';
|
|
||||||
import 'package:stackwallet/widgets/desktop/secondary_button.dart';
|
|
||||||
import 'package:stackwallet/widgets/loading_indicator.dart';
|
|
||||||
import 'package:stackwallet/widgets/rounded_white_container.dart';
|
|
||||||
|
|
||||||
class DesktopShowXpubDialog extends ConsumerStatefulWidget {
|
|
||||||
const DesktopShowXpubDialog({
|
|
||||||
Key? key,
|
|
||||||
required this.walletId,
|
|
||||||
this.clipboardInterface = const ClipboardWrapper(),
|
|
||||||
}) : super(key: key);
|
|
||||||
|
|
||||||
final String walletId;
|
|
||||||
|
|
||||||
final ClipboardInterface clipboardInterface;
|
|
||||||
|
|
||||||
static const String routeName = "/desktopShowXpubDialog";
|
|
||||||
|
|
||||||
@override
|
|
||||||
ConsumerState<DesktopShowXpubDialog> createState() =>
|
|
||||||
_DesktopShowXpubDialog();
|
|
||||||
}
|
|
||||||
|
|
||||||
class _DesktopShowXpubDialog extends ConsumerState<DesktopShowXpubDialog> {
|
|
||||||
late ClipboardInterface _clipboardInterface;
|
|
||||||
late final Manager manager;
|
|
||||||
|
|
||||||
String? xpub;
|
|
||||||
|
|
||||||
@override
|
|
||||||
void initState() {
|
|
||||||
_clipboardInterface = widget.clipboardInterface;
|
|
||||||
manager =
|
|
||||||
ref.read(walletsChangeNotifierProvider).getManager(widget.walletId);
|
|
||||||
super.initState();
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
void dispose() {
|
|
||||||
super.dispose();
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> _copy() async {
|
|
||||||
await _clipboardInterface.setData(ClipboardData(text: xpub!));
|
|
||||||
if (mounted) {
|
|
||||||
unawaited(showFloatingFlushBar(
|
|
||||||
type: FlushBarType.info,
|
|
||||||
message: "Copied to clipboard",
|
|
||||||
iconAsset: Assets.svg.copy,
|
|
||||||
context: context,
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return DesktopDialog(
|
|
||||||
maxWidth: 600,
|
|
||||||
maxHeight: double.infinity,
|
|
||||||
child: Column(
|
|
||||||
children: [
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.only(
|
|
||||||
left: 32,
|
|
||||||
),
|
|
||||||
child: Text(
|
|
||||||
"${manager.walletName} xPub",
|
|
||||||
style: STextStyles.desktopH2(context),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
DesktopDialogCloseButton(
|
|
||||||
onPressedOverride: Navigator.of(
|
|
||||||
context,
|
|
||||||
rootNavigator: true,
|
|
||||||
).pop,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
AnimatedSize(
|
|
||||||
duration: const Duration(milliseconds: 150),
|
|
||||||
child: Padding(
|
|
||||||
padding: const EdgeInsets.fromLTRB(32, 0, 32, 32),
|
|
||||||
child: Column(
|
|
||||||
children: [
|
|
||||||
const SizedBox(height: 44),
|
|
||||||
FutureBuilder(
|
|
||||||
future: (manager.wallet as XPubAble).xpub,
|
|
||||||
builder: (context, AsyncSnapshot<String> snapshot) {
|
|
||||||
if (snapshot.connectionState == ConnectionState.done &&
|
|
||||||
snapshot.hasData) {
|
|
||||||
xpub = snapshot.data!;
|
|
||||||
}
|
|
||||||
|
|
||||||
return Column(
|
|
||||||
children: [
|
|
||||||
xpub == null
|
|
||||||
? const SizedBox(
|
|
||||||
height: 300,
|
|
||||||
child: LoadingIndicator(),
|
|
||||||
)
|
|
||||||
: QrImage(
|
|
||||||
data: xpub!,
|
|
||||||
size: 280,
|
|
||||||
foregroundColor: Theme.of(context)
|
|
||||||
.extension<StackColors>()!
|
|
||||||
.accentColorDark,
|
|
||||||
),
|
|
||||||
const SizedBox(height: 25),
|
|
||||||
RoundedWhiteContainer(
|
|
||||||
padding: const EdgeInsets.all(16),
|
|
||||||
borderColor: xpub == null
|
|
||||||
? null
|
|
||||||
: Theme.of(context)
|
|
||||||
.extension<StackColors>()!
|
|
||||||
.backgroundAppBar,
|
|
||||||
child: SelectableText(
|
|
||||||
xpub ?? "",
|
|
||||||
style: STextStyles.largeMedium14(context),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 32),
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
Expanded(
|
|
||||||
child: SecondaryButton(
|
|
||||||
buttonHeight: ButtonHeight.xl,
|
|
||||||
label: "Cancel",
|
|
||||||
onPressed: Navigator.of(
|
|
||||||
context,
|
|
||||||
rootNavigator: true,
|
|
||||||
).pop,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(width: 16),
|
|
||||||
Expanded(
|
|
||||||
child: PrimaryButton(
|
|
||||||
buttonHeight: ButtonHeight.xl,
|
|
||||||
label: "Copy",
|
|
||||||
enabled: xpub != null,
|
|
||||||
onPressed: _copy,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -3,9 +3,9 @@ import 'dart:async';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
import 'package:flutter_svg/svg.dart';
|
import 'package:flutter_svg/svg.dart';
|
||||||
|
import 'package:stackwallet/pages/settings_views/global_settings_view/xpub_view.dart';
|
||||||
import 'package:stackwallet/pages_desktop_specific/addresses/desktop_wallet_addresses_view.dart';
|
import 'package:stackwallet/pages_desktop_specific/addresses/desktop_wallet_addresses_view.dart';
|
||||||
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/desktop_delete_wallet_dialog.dart';
|
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/desktop_delete_wallet_dialog.dart';
|
||||||
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/desktop_show_xpub_dialog.dart';
|
|
||||||
import 'package:stackwallet/providers/providers.dart';
|
import 'package:stackwallet/providers/providers.dart';
|
||||||
import 'package:stackwallet/route_generator.dart';
|
import 'package:stackwallet/route_generator.dart';
|
||||||
import 'package:stackwallet/utilities/assets.dart';
|
import 'package:stackwallet/utilities/assets.dart';
|
||||||
|
@ -109,13 +109,13 @@ class WalletOptionsButton extends StatelessWidget {
|
||||||
context: context,
|
context: context,
|
||||||
barrierDismissible: false,
|
barrierDismissible: false,
|
||||||
builder: (context) => Navigator(
|
builder: (context) => Navigator(
|
||||||
initialRoute: DesktopShowXpubDialog.routeName,
|
initialRoute: XPubView.routeName,
|
||||||
onGenerateRoute: RouteGenerator.generateRoute,
|
onGenerateRoute: RouteGenerator.generateRoute,
|
||||||
onGenerateInitialRoutes: (_, __) {
|
onGenerateInitialRoutes: (_, __) {
|
||||||
return [
|
return [
|
||||||
RouteGenerator.generateRoute(
|
RouteGenerator.generateRoute(
|
||||||
RouteSettings(
|
RouteSettings(
|
||||||
name: DesktopShowXpubDialog.routeName,
|
name: XPubView.routeName,
|
||||||
arguments: walletId,
|
arguments: walletId,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -122,7 +122,6 @@ import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/des
|
||||||
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/delete_wallet_keys_popup.dart';
|
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/delete_wallet_keys_popup.dart';
|
||||||
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/desktop_attention_delete_wallet.dart';
|
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/desktop_attention_delete_wallet.dart';
|
||||||
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/desktop_delete_wallet_dialog.dart';
|
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/desktop_delete_wallet_dialog.dart';
|
||||||
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/desktop_show_xpub_dialog.dart';
|
|
||||||
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/qr_code_desktop_popup_content.dart';
|
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/qr_code_desktop_popup_content.dart';
|
||||||
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/unlock_wallet_keys_desktop.dart';
|
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/unlock_wallet_keys_desktop.dart';
|
||||||
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/wallet_keys_desktop_popup.dart';
|
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/wallet_keys_desktop_popup.dart';
|
||||||
|
@ -500,7 +499,7 @@ class RouteGenerator {
|
||||||
return getRoute(
|
return getRoute(
|
||||||
shouldUseMaterialRoute: useMaterialPageRoute,
|
shouldUseMaterialRoute: useMaterialPageRoute,
|
||||||
builder: (_) => XPubView(
|
builder: (_) => XPubView(
|
||||||
xpub: args,
|
walletId: args,
|
||||||
),
|
),
|
||||||
settings: RouteSettings(
|
settings: RouteSettings(
|
||||||
name: settings.name,
|
name: settings.name,
|
||||||
|
@ -1687,19 +1686,6 @@ class RouteGenerator {
|
||||||
}
|
}
|
||||||
return _routeError("${settings.name} invalid args: ${args.toString()}");
|
return _routeError("${settings.name} invalid args: ${args.toString()}");
|
||||||
|
|
||||||
case DesktopShowXpubDialog.routeName:
|
|
||||||
if (args is String) {
|
|
||||||
return FadePageRoute(
|
|
||||||
DesktopShowXpubDialog(
|
|
||||||
walletId: args,
|
|
||||||
),
|
|
||||||
RouteSettings(
|
|
||||||
name: settings.name,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return _routeError("${settings.name} invalid args: ${args.toString()}");
|
|
||||||
|
|
||||||
case QRCodeDesktopPopupContent.routeName:
|
case QRCodeDesktopPopupContent.routeName:
|
||||||
if (args is String) {
|
if (args is String) {
|
||||||
return FadePageRoute(
|
return FadePageRoute(
|
||||||
|
|
Loading…
Reference in a new issue