mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
exchange icon alignment fix
This commit is contained in:
parent
57c31e9fa2
commit
05934e28d9
1 changed files with 12 additions and 4 deletions
|
@ -110,12 +110,16 @@ class ExchangeProviderOptions extends ConsumerWidget {
|
||||||
),
|
),
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.only(top: 5.0),
|
padding: const EdgeInsets.only(top: 5.0),
|
||||||
|
child: SizedBox(
|
||||||
|
width: isDesktop ? 32 : 24,
|
||||||
|
height: isDesktop ? 32 : 24,
|
||||||
child: SvgPicture.asset(
|
child: SvgPicture.asset(
|
||||||
Assets.exchange.changeNow,
|
Assets.exchange.changeNow,
|
||||||
width: isDesktop ? 32 : 24,
|
width: isDesktop ? 32 : 24,
|
||||||
height: isDesktop ? 32 : 24,
|
height: isDesktop ? 32 : 24,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
width: 10,
|
width: 10,
|
||||||
),
|
),
|
||||||
|
@ -336,12 +340,16 @@ class ExchangeProviderOptions extends ConsumerWidget {
|
||||||
),
|
),
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.only(top: 5.0),
|
padding: const EdgeInsets.only(top: 5.0),
|
||||||
|
child: SizedBox(
|
||||||
|
width: isDesktop ? 32 : 24,
|
||||||
|
height: isDesktop ? 32 : 24,
|
||||||
child: SvgPicture.asset(
|
child: SvgPicture.asset(
|
||||||
Assets.exchange.majesticBankBlue,
|
Assets.exchange.majesticBankBlue,
|
||||||
width: isDesktop ? 32 : 24,
|
width: isDesktop ? 32 : 24,
|
||||||
height: isDesktop ? 32 : 24,
|
height: isDesktop ? 32 : 24,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
width: 10,
|
width: 10,
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue