hide down chevron contextually

This commit is contained in:
sneurlax 2024-07-02 11:14:23 -05:00
parent a2308d3e78
commit 005fcdf44f

View file

@ -200,17 +200,19 @@ class WalletSummaryInfo extends ConsumerWidget {
.textFavoriteCard, .textFavoriteCard,
), ),
), ),
const SizedBox( if (availableBalances.length > 1) ...[
width: 4, const SizedBox(
), width: 4,
SvgPicture.asset( ),
Assets.svg.chevronDown, SvgPicture.asset(
color: Theme.of(context) Assets.svg.chevronDown,
.extension<StackColors>()! color: Theme.of(context)
.textFavoriteCard, .extension<StackColors>()!
width: 8, .textFavoriteCard,
height: 4, width: 8,
), height: 4,
),
],
], ],
), ),
), ),