Fix display empty state when no favorites are available

This commit is contained in:
dab246
2025-11-18 17:03:31 +07:00
committed by Dat H. Pham
parent 92b63bb555
commit 7528635da4
4 changed files with 54 additions and 12 deletions
@@ -5422,4 +5422,18 @@ class AppLocalizations {
name: 'manageYourTwakeAccount',
);
}
String get youDoNotHaveAnyFavoritesEmails {
return Intl.message(
'You dont have any favorites emails.',
name: 'youDoNotHaveAnyFavoritesEmails',
);
}
String get startToAddFavoritesEmails {
return Intl.message(
'Start to add favorites emails',
name: 'startToAddFavoritesEmails',
);
}
}