We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a6164d commit 58c897dCopy full SHA for 58c897d
lib/chat/chat_room/titlebar/chat_room_title_bar.dart
@@ -45,7 +45,11 @@ class ChatRoomTitleBar extends StatelessWidget implements PreferredSizeWidget {
45
actions: space(
46
widthGap: kSmallPadding,
47
children: [
48
- if (!room.isArchived) ChatRoomPinButton(room: room),
+ if (!room.isArchived)
49
+ ChatRoomPinButton(
50
+ key: ValueKey('${room.id}_${room.roomAccountData.length}'),
51
+ room: room,
52
+ ),
53
IconButton(
54
onPressed: () =>
55
chatRoomScaffoldKey.currentState?.openEndDrawer(),
0 commit comments