mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 05:04:35 +00:00
radio button fix for desktop
This commit is contained in:
parent
0176111580
commit
7759bd2712
1 changed files with 3 additions and 2 deletions
|
@ -78,7 +78,8 @@ class ExchangeProviderOptions extends ConsumerWidget {
|
||||||
width: 20,
|
width: 20,
|
||||||
height: 20,
|
height: 20,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.only(top: 19.0),
|
padding:
|
||||||
|
EdgeInsets.only(top: isDesktop ? 20.0 : 15.0),
|
||||||
child: Radio(
|
child: Radio(
|
||||||
activeColor: Theme.of(context)
|
activeColor: Theme.of(context)
|
||||||
.extension<StackColors>()!
|
.extension<StackColors>()!
|
||||||
|
@ -107,7 +108,7 @@ class ExchangeProviderOptions extends ConsumerWidget {
|
||||||
width: 14,
|
width: 14,
|
||||||
),
|
),
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.only(top: 8.0),
|
padding: const EdgeInsets.only(top: 5.0),
|
||||||
child: SvgPicture.asset(
|
child: SvgPicture.asset(
|
||||||
Assets.exchange.changeNow,
|
Assets.exchange.changeNow,
|
||||||
width: isDesktop ? 32 : 24,
|
width: isDesktop ? 32 : 24,
|
||||||
|
|
Loading…
Reference in a new issue