TF-3764 Add Create filter button in context menu

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-06-12 11:48:20 +07:00
committed by Dat H. Pham
parent bab0331fe0
commit 5068a11524
19 changed files with 172 additions and 74 deletions
@@ -256,7 +256,8 @@ extension AppColor on Color {
static const textPrimary = Color(0xFF424244);
static const iconFolder = Color(0xFF297EF2);
static const folderDivider = Color(0xFFE4E8EC);
static const color424244 = Color(0xFF424244);
static const gray424244 = Color(0xFF424244);
static const redFF3347 = Color(0xFFFF3347);
static const mapGradientColor = [
[Color(0xFF21D4FD), Color(0xFFB721FF)],
@@ -230,6 +230,7 @@ class ImagePaths {
String get icDoubleArrowUp => _getImagePath('ic_double_arrow_up.svg');
String get icDoubleArrowDown => _getImagePath('ic_double_arrow_down.svg');
String get icRefreshQuotas => _getImagePath('ic_refresh_quotas.svg');
String get icCreateFilter => _getImagePath('ic_create_filter.svg');
String _getImagePath(String imageName) {
return AssetsPaths.images + imageName;
+2 -2
View File
@@ -276,7 +276,7 @@ class ThemeUtils {
letterSpacing: 0.0,
fontSize: 24,
height: 28.01 / 24,
color: AppColor.color424244.withOpacity(0.9),
color: AppColor.gray424244.withOpacity(0.9),
);
static TextStyle textStyleInter400() => TextStyle(
@@ -285,7 +285,7 @@ class ThemeUtils {
letterSpacing: -0.15,
fontSize: 16,
height: 21.01 / 16,
color: AppColor.color424244.withOpacity(0.64),
color: AppColor.gray424244.withOpacity(0.64),
);
static TextSelectionThemeData get _textSelectionTheme {