TF-3479 Handle Show all & Hide all popup menu composer

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-02-14 10:10:30 +07:00
committed by Dat H. Pham
parent 1bad81dbf2
commit 16cb8c8a37
12 changed files with 341 additions and 125 deletions
@@ -0,0 +1,16 @@
import 'package:core/presentation/extensions/color_extension.dart';
import 'package:flutter/material.dart';
class HiddenComposerItemStyle {
static const double radius = 12;
static const double elevation = 16;
static const double width = 320;
static const double height = 52;
static const double space = 8;
static const double iconSize = 24;
static const Color backgroundColor = Colors.white;
static const Color iconColor = AppColor.steelGray200;
static const EdgeInsetsGeometry padding = EdgeInsetsDirectional.symmetric(horizontal: 8);
}