TF-248 Update UI and Action for selection multiple email

This commit is contained in:
dab246
2022-02-09 13:00:49 +07:00
committed by Dat H. Pham
parent 879692aa54
commit a48f508171
22 changed files with 443 additions and 155 deletions
+42 -1
View File
@@ -476,5 +476,46 @@ class AppLocalizations {
'Compose',
name: 'compose');
}
}
String get delete {
return Intl.message(
'Delete',
name: 'delete');
}
String get move {
return Intl.message(
'Move',
name: 'move');
}
String get spam {
return Intl.message(
'Spam',
name: 'spam');
}
String get flag {
return Intl.message(
'Flag',
name: 'flag');
}
String get read {
return Intl.message(
'Read',
name: 'read');
}
String get unread {
return Intl.message(
'Unread',
name: 'unread');
}
String get the_feature_is_under_development {
return Intl.message(
'This feature is under development.',
name: 'the_feature_is_under_development');
}
}