TF-3461 Add sort by message size

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-02-10 14:26:15 +07:00
committed by Dat H. Pham
parent 0e549c830a
commit 192dad149b
4 changed files with 51 additions and 1 deletions
@@ -4506,4 +4506,18 @@ class AppLocalizations {
name: 'downloadAttachmentHasBeenCancelled',
);
}
String get sizeDescending {
return Intl.message(
'Size: Big - Small',
name: 'sizeDescending',
);
}
String get sizeAscending {
return Intl.message(
'Size: Small - Big',
name: 'sizeAscending',
);
}
}