mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-05-06 05:02:14 +00:00
Fix more padding
This commit is contained in:
parent
341c595214
commit
6cbbd39751
1 changed files with 6 additions and 1 deletions
|
@ -141,7 +141,11 @@ class _WalletKeysPageBodyState extends State<WalletKeysPageBody>
|
||||||
padding: const EdgeInsets.only(left: 22, right: 22),
|
padding: const EdgeInsets.only(left: 22, right: 22),
|
||||||
child: _buildKeysTab(context),
|
child: _buildKeysTab(context),
|
||||||
),
|
),
|
||||||
if (showLegacySeedTab) _buildLegacySeedTab(context),
|
if (showLegacySeedTab)
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.only(left: 22, right: 22),
|
||||||
|
child: _buildLegacySeedTab(context),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -188,6 +192,7 @@ class _WalletKeysPageBodyState extends State<WalletKeysPageBody>
|
||||||
separatorBuilder: (context, index) => const SizedBox(height: 20),
|
separatorBuilder: (context, index) => const SizedBox(height: 20),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
SizedBox(height: 20),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue