mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-02-02 03:06:29 +00:00
WIP desktop eth token send view
This commit is contained in:
parent
e01cef5df7
commit
36c4221185
2 changed files with 1022 additions and 3 deletions
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,7 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/desktop_receive.dart';
|
||||
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/desktop_send.dart';
|
||||
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/desktop_token_send.dart';
|
||||
import 'package:stackwallet/pages_desktop_specific/my_stack_view/wallet_view/sub_widgets/send_receive_tab_menu.dart';
|
||||
import 'package:stackwallet/utilities/constants.dart';
|
||||
import 'package:stackwallet/utilities/text_styles.dart';
|
||||
|
@ -69,9 +70,13 @@ class _MyWalletState extends State<MyWallet> {
|
|||
firstChild: Padding(
|
||||
key: const Key("desktopSendViewPortKey"),
|
||||
padding: const EdgeInsets.all(20),
|
||||
child: DesktopSend(
|
||||
walletId: widget.walletId,
|
||||
),
|
||||
child: widget.contractAddress == null
|
||||
? DesktopSend(
|
||||
walletId: widget.walletId,
|
||||
)
|
||||
: DesktopTokenSend(
|
||||
walletId: widget.walletId,
|
||||
),
|
||||
),
|
||||
secondChild: Padding(
|
||||
key: const Key("desktopReceiveViewPortKey"),
|
||||
|
|
Loading…
Reference in a new issue