mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
desktop wallets not showing properly fix
This commit is contained in:
parent
c76bcd81e7
commit
7e95b3a00f
1 changed files with 3 additions and 2 deletions
|
@ -37,10 +37,11 @@ class _WalletTableState extends ConsumerState<WalletSummaryTable> {
|
|||
|
||||
return ConditionalParent(
|
||||
condition: index + 1 == providersByCoin.length,
|
||||
builder: (child) => const Padding(
|
||||
padding: EdgeInsets.only(
|
||||
builder: (child) => Padding(
|
||||
padding: const EdgeInsets.only(
|
||||
bottom: 16,
|
||||
),
|
||||
child: child,
|
||||
),
|
||||
child: DesktopWalletSummaryRow(
|
||||
key: Key("DesktopWalletSummaryRow_key_${coin.name}"),
|
||||
|
|
Loading…
Reference in a new issue