diff --git a/lib/pages/chat/chat_view.dart b/lib/pages/chat/chat_view.dart index 368c13dcf..53bc9eaac 100644 --- a/lib/pages/chat/chat_view.dart +++ b/lib/pages/chat/chat_view.dart @@ -243,11 +243,21 @@ class ChatView extends StatelessWidget { .where( (syncUpdate) => syncUpdate.hasRoomUpdate, ), - builder: (context, _) => UnreadRoomsBadge( - filter: (r) => r.id != controller.roomId, - badgePosition: - BadgePosition.topEnd(end: 8, top: 4), - child: const Center(child: BackButton()), + // #Pangea + // builder: (context, _) => UnreadRoomsBadge( + builder: (context, _) => Center( + child: SizedBox( + height: kToolbarHeight, + child: UnreadRoomsBadge( + // Pangea# + filter: (r) => r.id != controller.roomId, + badgePosition: BadgePosition.topEnd( + end: 8, + top: 4, + ), + child: const Center(child: BackButton()), + ), + ), ), ), titleSpacing: FluffyThemes.isColumnMode(context) ? 24 : 0,