fix: disabled icon color in grid header menu

This commit is contained in:
Richard Shiue 2022-09-08 20:57:19 +08:00
parent 21d09f7741
commit 3b6c6e92d6

View File

@ -167,7 +167,8 @@ class FieldActionCell extends StatelessWidget {
onTap();
}
},
leftIcon: svgWidget(action.iconName(), color: theme.iconColor),
leftIcon: svgWidget(action.iconName(),
color: enable ? theme.iconColor : theme.disableIconColor),
);
}
}