desktop network icon size fix

This commit is contained in:
julian 2022-11-02 16:24:55 -06:00
parent c1d81b52a5
commit 75d9ca6912

View file

@ -481,8 +481,8 @@ class _WalletNetworkSettingsViewState
child: Center( child: Center(
child: SvgPicture.asset( child: SvgPicture.asset(
Assets.svg.radio, Assets.svg.radio,
height: 14, height: isDesktop ? 19 : 14,
width: 14, width: isDesktop ? 19 : 14,
color: Theme.of(context) color: Theme.of(context)
.extension<StackColors>()! .extension<StackColors>()!
.accentColorGreen, .accentColorGreen,