mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +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,
|
||||
height: 20,
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.only(top: 19.0),
|
||||
padding:
|
||||
EdgeInsets.only(top: isDesktop ? 20.0 : 15.0),
|
||||
child: Radio(
|
||||
activeColor: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
|
@ -107,7 +108,7 @@ class ExchangeProviderOptions extends ConsumerWidget {
|
|||
width: 14,
|
||||
),
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 8.0),
|
||||
padding: const EdgeInsets.only(top: 5.0),
|
||||
child: SvgPicture.asset(
|
||||
Assets.exchange.changeNow,
|
||||
width: isDesktop ? 32 : 24,
|
||||
|
|
Loading…
Reference in a new issue