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,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,
), ),