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(
|
SelectableText(
|
||||||
ref.watch(pAmountFormatter(coin)).format(
|
ref.watch(pAmountFormatter(coin)).format(
|
||||||
amountWithoutChange,
|
amountWithoutChange,
|
||||||
ethContract: ref
|
ethContract: widget.isTokenTx
|
||||||
.watch(pCurrentTokenWallet)
|
? ref
|
||||||
?.tokenContract,
|
.watch(pCurrentTokenWallet)!
|
||||||
|
.tokenContract
|
||||||
|
: null,
|
||||||
),
|
),
|
||||||
style: STextStyles.itemSubtitle12(context),
|
style: STextStyles.itemSubtitle12(context),
|
||||||
textAlign: TextAlign.right,
|
textAlign: TextAlign.right,
|
||||||
|
@ -745,9 +747,11 @@ class _ConfirmTransactionViewState
|
||||||
SelectableText(
|
SelectableText(
|
||||||
ref.watch(pAmountFormatter(coin)).format(
|
ref.watch(pAmountFormatter(coin)).format(
|
||||||
amountWithoutChange,
|
amountWithoutChange,
|
||||||
ethContract: ref
|
ethContract: widget.isTokenTx
|
||||||
.read(pCurrentTokenWallet)
|
? ref
|
||||||
?.tokenContract,
|
.watch(pCurrentTokenWallet)!
|
||||||
|
.tokenContract
|
||||||
|
: null,
|
||||||
),
|
),
|
||||||
style: STextStyles
|
style: STextStyles
|
||||||
.desktopTextExtraExtraSmall(
|
.desktopTextExtraExtraSmall(
|
||||||
|
|
Loading…
Reference in a new issue