TF-3002 [WEB] Update unselected icon color for filter message button

This commit is contained in:
dab246
2024-09-13 16:06:27 +07:00
committed by Dat H. Pham
parent 0efbece76f
commit 442140d360
10 changed files with 341 additions and 99 deletions
@@ -54,12 +54,12 @@ mixin FilterEmailPopupMenuMixin {
Function(FilterMessageOption)? onCallBack
) {
return InkWell(
onTap: () => onCallBack?.call(option == optionSelected ? FilterMessageOption.all : option),
onTap: () => onCallBack?.call(option),
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 16),
child: SizedBox(
child: Row(children: [
SvgPicture.asset(option.getIcon(_imagePaths),
SvgPicture.asset(option.getContextMenuIcon(_imagePaths),
width: 20,
height: 20,
fit: BoxFit.fill,