We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d773347 commit 6dd984aCopy full SHA for 6dd984a
lib/pages/chat_list/chat_list_body.dart
@@ -170,7 +170,16 @@ class ChatListViewBody extends StatelessWidget {
170
),
171
172
173
- if (client.rooms.isNotEmpty && !controller.isSearchMode)
+ // #Pangea
174
+ if (!controller.isSearchMode)
175
+
176
+ // if (client.rooms.isNotEmpty && !controller.isSearchMode)
177
+ // let's simplify this UI while the user has less chat than
178
+ // can fill this view
179
+ if (client.rooms.length <= 7 || controller.isSearchMode)
180
+ const SizedBox(height: 8),
181
+ if (client.rooms.length > 7 && !controller.isSearchMode)
182
+ // Pangea#
183
SizedBox(
184
height: 64,
185
child: ListView(
0 commit comments