TF-3996 Group context menu actions when opened email

This commit is contained in:
dab246
2025-09-03 12:31:47 +07:00
committed by Dat H. Pham
parent 22379dbbbd
commit b66d84ecb8
10 changed files with 168 additions and 10 deletions
@@ -27,6 +27,7 @@ mixin PopupContextMenuActionMixin {
required List<ContextMenuItemAction> itemActions,
required OnContextMenuActionClick onContextMenuActionClick,
Key? key,
bool useGroupedActions = false,
}) async {
return await showModalBottomSheet(
context: context,
@@ -50,6 +51,7 @@ mixin PopupContextMenuActionMixin {
child: ContextMenuDialogView(
actions: itemActions,
onContextMenuActionClick: onContextMenuActionClick,
useGroupedActions: useGroupedActions,
),
),
);