fix channels query

This commit is contained in:
Salvatore Giordano
2020-04-10 14:47:57 +02:00
parent 2c6273c080
commit 552f4ee600
3 changed files with 23 additions and 13 deletions
+2 -1
View File
@@ -51,7 +51,7 @@ class MyApp extends StatelessWidget {
return MaterialApp(
theme: ThemeData.light(),
darkTheme: ThemeData.dark(),
themeMode: ThemeMode.dark,
themeMode: ThemeMode.system,
home: Container(
child: StreamChat(
client: client,
@@ -99,6 +99,7 @@ class ChannelPage extends StatelessWidget {
child: Stack(
children: <Widget>[
MessageListView(
showVideoFullScreen: false,
threadBuilder: (_, parentMessage) {
return ThreadPage(
parent: parentMessage,