TF-1362: [Presentation] Create UI for all device and Add Action dismiss

This commit is contained in:
HuyNguyen
2023-01-10 00:25:21 +07:00
committed by Dat Vu
parent 6030aec159
commit db5cc6a47b
18 changed files with 264 additions and 36 deletions
+23 -1
View File
@@ -2644,7 +2644,29 @@ class AppLocalizations {
String get privacyPolicy {
return Intl.message(
'Privacy policy',
name: 'privacyPolicy'
name: 'privacyPolicy',
);
}
String countNewSpamEmails(int count,) {
return Intl.message(
'You have $count new spam emails!',
name: 'countNewSpamEmails',
args: [count]
);
}
String get showDetails {
return Intl.message(
'Show Details',
name: 'showDetails',
);
}
String get dismiss {
return Intl.message(
'Dismiss',
name: 'dismiss',
);
}
}