mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 01:37:54 +00:00
fix: anonymize more option icon temporarily
This commit is contained in:
parent
9d76b60d00
commit
6b68ab53b0
1 changed files with 9 additions and 5 deletions
|
@ -143,11 +143,15 @@ class _MoreFeaturesItem extends StatelessWidget {
|
|||
child: Center(
|
||||
child: SvgPicture.asset(
|
||||
iconAsset,
|
||||
width: iconSize,
|
||||
height: iconSize,
|
||||
color: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.settingsIconIcon,
|
||||
width:
|
||||
iconAsset == Assets.svg.anonymize ? iconSizeBG : iconSize,
|
||||
height:
|
||||
iconAsset == Assets.svg.anonymize ? iconSizeBG : iconSize,
|
||||
color: iconAsset == Assets.svg.anonymize
|
||||
? null
|
||||
: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.settingsIconIcon,
|
||||
),
|
||||
),
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue