exchange icon alignment fix

This commit is contained in:
julian 2023-02-06 15:44:47 -06:00
parent 57c31e9fa2
commit 05934e28d9

View file

@ -110,10 +110,14 @@ class ExchangeProviderOptions extends ConsumerWidget {
), ),
Padding( Padding(
padding: const EdgeInsets.only(top: 5.0), padding: const EdgeInsets.only(top: 5.0),
child: SvgPicture.asset( child: SizedBox(
Assets.exchange.changeNow,
width: isDesktop ? 32 : 24, width: isDesktop ? 32 : 24,
height: isDesktop ? 32 : 24, height: isDesktop ? 32 : 24,
child: SvgPicture.asset(
Assets.exchange.changeNow,
width: isDesktop ? 32 : 24,
height: isDesktop ? 32 : 24,
),
), ),
), ),
const SizedBox( const SizedBox(
@ -336,10 +340,14 @@ class ExchangeProviderOptions extends ConsumerWidget {
), ),
Padding( Padding(
padding: const EdgeInsets.only(top: 5.0), padding: const EdgeInsets.only(top: 5.0),
child: SvgPicture.asset( child: SizedBox(
Assets.exchange.majesticBankBlue,
width: isDesktop ? 32 : 24, width: isDesktop ? 32 : 24,
height: isDesktop ? 32 : 24, height: isDesktop ? 32 : 24,
child: SvgPicture.asset(
Assets.exchange.majesticBankBlue,
width: isDesktop ? 32 : 24,
height: isDesktop ? 32 : 24,
),
), ),
), ),
const SizedBox( const SizedBox(