TF-1317 Show push notification on background or terminated app

This commit is contained in:
dab246
2023-01-09 17:01:34 +07:00
committed by Dat H. Pham
parent 97583820fa
commit 7367d7e1d2
12 changed files with 292 additions and 96 deletions
@@ -2620,4 +2620,24 @@ class AppLocalizations {
name: 'regards',
);
}
String get youHaveNewMessages {
return Intl.message(
'You have new messages',
name: 'youHaveNewMessages',
);
}
String get appTitlePushNotification {
return Intl.message(
'Team Mail',
name: 'appTitlePushNotification');
}
String totalNewMessagePushNotification(int count) {
return Intl.message(
'$count new emails',
name: 'totalNewMessagePushNotification',
args: [count]);
}
}