mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-27 14:59:29 +01:00
Merge branch 'krille/fix-spaces' into 'main'
chore: Fix spaces See merge request famedly/fluffychat!646
This commit is contained in:
commit
b29deec76d
@ -302,13 +302,14 @@ class _ChatListViewBodyState extends State<_ChatListViewBody> {
|
||||
],
|
||||
);
|
||||
}
|
||||
final displayStoriesHeader = widget.controller.activeSpaceId == null;
|
||||
child = ListView.builder(
|
||||
key: ValueKey(Matrix.of(context).client.userID.toString() +
|
||||
widget.controller.activeSpaceId.toString()),
|
||||
controller: widget.controller.scrollController,
|
||||
itemCount: rooms.length + 1,
|
||||
itemCount: rooms.length + (displayStoriesHeader ? 1 : 0),
|
||||
itemBuilder: (BuildContext context, int i) {
|
||||
if (i == 0 && widget.controller.activeSpaceId == null) {
|
||||
if (i == 0 && displayStoriesHeader) {
|
||||
return const StoriesHeader();
|
||||
}
|
||||
i--;
|
||||
|
Loading…
Reference in New Issue
Block a user