1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00

Fix notifications bar refresh issue

This commit is contained in:
Pierre HUBERT 2021-04-24 09:58:02 +02:00
parent 229491cd79
commit e3ccef537a

View File

@ -43,8 +43,8 @@ class StatusWidgetState extends SafeState<StatusWidget> {
@override
void initState() {
init();
super.initState();
init();
listenChangeState<NewNumberNotifsEvent>(
(e) => unreadNotifications = e.newNum);
@ -58,5 +58,8 @@ class StatusWidgetState extends SafeState<StatusWidget> {
c.findAncestorStateOfType<StatusWidgetState>();
@override
Widget build(BuildContext context) => widget.child(context);
Widget build(BuildContext context) => Container(
key: Key("$unreadNotifications-$unreadConversations"),
child: widget.child(context),
);
}