mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-04-17 19:51:58 +00:00
mobile eth fee selection sheet fix
This commit is contained in:
parent
4797b083e2
commit
5267d5f949
1 changed files with 12 additions and 6 deletions
|
@ -358,13 +358,15 @@ class _TransactionFeeSelectionSheetState
|
|||
const SizedBox(
|
||||
height: 2,
|
||||
),
|
||||
if (feeObject == null)
|
||||
if (feeObject == null &&
|
||||
manager.coin != Coin.ethereum)
|
||||
AnimatedText(
|
||||
stringsToLoopThrough:
|
||||
stringsToLoopThrough,
|
||||
style: STextStyles.itemSubtitle(context),
|
||||
),
|
||||
if (feeObject != null)
|
||||
if (feeObject != null &&
|
||||
manager.coin != Coin.ethereum)
|
||||
Text(
|
||||
estimatedTimeToBeIncludedInNextBlock(
|
||||
Constants.targetBlockTimeInSeconds(
|
||||
|
@ -490,13 +492,15 @@ class _TransactionFeeSelectionSheetState
|
|||
const SizedBox(
|
||||
height: 2,
|
||||
),
|
||||
if (feeObject == null)
|
||||
if (feeObject == null &&
|
||||
manager.coin != Coin.ethereum)
|
||||
AnimatedText(
|
||||
stringsToLoopThrough:
|
||||
stringsToLoopThrough,
|
||||
style: STextStyles.itemSubtitle(context),
|
||||
),
|
||||
if (feeObject != null)
|
||||
if (feeObject != null &&
|
||||
manager.coin != Coin.ethereum)
|
||||
Text(
|
||||
estimatedTimeToBeIncludedInNextBlock(
|
||||
Constants.targetBlockTimeInSeconds(
|
||||
|
@ -622,13 +626,15 @@ class _TransactionFeeSelectionSheetState
|
|||
const SizedBox(
|
||||
height: 2,
|
||||
),
|
||||
if (feeObject == null)
|
||||
if (feeObject == null &&
|
||||
manager.coin != Coin.ethereum)
|
||||
AnimatedText(
|
||||
stringsToLoopThrough:
|
||||
stringsToLoopThrough,
|
||||
style: STextStyles.itemSubtitle(context),
|
||||
),
|
||||
if (feeObject != null)
|
||||
if (feeObject != null &&
|
||||
manager.coin != Coin.ethereum)
|
||||
Text(
|
||||
estimatedTimeToBeIncludedInNextBlock(
|
||||
Constants.targetBlockTimeInSeconds(
|
||||
|
|
Loading…
Reference in a new issue