TF-101 Show counter for regular mailbox

This commit is contained in:
dab246
2021-10-14 11:54:46 +07:00
committed by Dat H. Pham
parent 12002444a7
commit f198f4ada0
5 changed files with 61 additions and 33 deletions
@@ -128,12 +128,12 @@ class AppBarThreadWidgetBuilder {
padding: EdgeInsets.only(left: 8, right: 8, top: 2.5, bottom: 2.5),
decoration:BoxDecoration(
borderRadius: BorderRadius.circular(8),
color: AppColor.bgNotifyCountAppBarMailboxListMail),
color: AppColor.backgroundCounterMailboxColor),
child: Text(
'${_presentationMailbox!.getCountUnReadEmails()} ${AppLocalizations.of(_context).unread_email_notification}',
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: TextStyle(fontSize: 10, color: AppColor.notifyCountAppBarMailboxListMail, fontWeight: FontWeight.w500),
style: TextStyle(fontSize: 10, color: AppColor.counterMailboxColor, fontWeight: FontWeight.w500),
)),
]
);