mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-18 16:44:32 +00:00
token wallet state display bugfix on confirm send screen
This commit is contained in:
parent
82d8acb7a2
commit
662bbd3099
1 changed files with 10 additions and 6 deletions
|
@ -522,9 +522,11 @@ class _ConfirmTransactionViewState
|
|||
SelectableText(
|
||||
ref.watch(pAmountFormatter(coin)).format(
|
||||
amountWithoutChange,
|
||||
ethContract: ref
|
||||
.watch(pCurrentTokenWallet)
|
||||
?.tokenContract,
|
||||
ethContract: widget.isTokenTx
|
||||
? ref
|
||||
.watch(pCurrentTokenWallet)!
|
||||
.tokenContract
|
||||
: null,
|
||||
),
|
||||
style: STextStyles.itemSubtitle12(context),
|
||||
textAlign: TextAlign.right,
|
||||
|
@ -745,9 +747,11 @@ class _ConfirmTransactionViewState
|
|||
SelectableText(
|
||||
ref.watch(pAmountFormatter(coin)).format(
|
||||
amountWithoutChange,
|
||||
ethContract: ref
|
||||
.read(pCurrentTokenWallet)
|
||||
?.tokenContract,
|
||||
ethContract: widget.isTokenTx
|
||||
? ref
|
||||
.watch(pCurrentTokenWallet)!
|
||||
.tokenContract
|
||||
: null,
|
||||
),
|
||||
style: STextStyles
|
||||
.desktopTextExtraExtraSmall(
|
||||
|
|
Loading…
Reference in a new issue