TF-4373 Add E2E test for test case delete thread to trash on mobile

This commit is contained in:
dab246
2026-03-11 16:13:42 +07:00
committed by Dat H. Pham
parent bb9dca10de
commit e2c158d633
5 changed files with 80 additions and 0 deletions
@@ -68,6 +68,7 @@ class ThreadDetailAppBar extends StatelessWidget {
onTapActionCallback: (_) => onThreadActionClick?.call(EmailActionType.moveToMailbox),
),
_ThreadDetailAppBarButton(
key: const Key('delete_thread_button'),
icon: imagePaths.icDeleteComposer,
iconColor: threadDetailCanPermanentlyDelete
? AppColor.redFF3347
@@ -183,6 +184,7 @@ class ThreadDetailAppBar extends StatelessWidget {
class _ThreadDetailAppBarButton extends StatelessWidget {
const _ThreadDetailAppBarButton({
super.key,
required this.icon,
required this.tooltipMessage,
required this.onTapActionCallback,