TF-4075 Jump to attachments list position on web responsive mobile

This commit is contained in:
dab246
2025-10-06 19:43:32 +07:00
committed by Dat H. Pham
parent 5f3098484b
commit 3478e2aabc
10 changed files with 91 additions and 3 deletions
@@ -81,6 +81,15 @@ class CollapseEmailInThreadDetailAction extends EmailUIAction {
final EmailId emailId;
@override
List<Object?> get props => [emailId];
}
class OpenAttachmentListAction extends EmailUIAction {
OpenAttachmentListAction(this.emailId);
final EmailId? emailId;
@override
List<Object?> get props => [emailId];
}