TF-3759 Always show dot icon when open popup menu of more action in email item widget

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-06-16 10:48:22 +07:00
committed by Dat H. Pham
parent 9c3f6a9684
commit d39d09663d
7 changed files with 596 additions and 312 deletions
@@ -609,7 +609,7 @@ class ThreadView extends GetWidget<ThreadController>
);
}
void _handleEmailContextMenuAction(
Future<void> _handleEmailContextMenuAction(
BuildContext context,
PresentationEmail presentationEmail,
RelativeRect? position
@@ -639,7 +639,7 @@ class ThreadView extends GetWidget<ThreadController>
))
.toList();
controller.openBottomSheetContextMenuAction(
return controller.openBottomSheetContextMenuAction(
context: context,
itemActions: contextMenuActions,
onContextMenuActionClick: (menuAction) {
@@ -672,7 +672,7 @@ class ThreadView extends GetWidget<ThreadController>
);
}).toList();
controller.openPopupMenuAction(context, position, popupMenuItems);
return controller.openPopupMenuAction(context, position, popupMenuItems);
}
}