Merge branch 'master' into feature/new-ui

This commit is contained in:
Salvatore Giordano
2020-10-23 16:29:04 +02:00
9 changed files with 67 additions and 42 deletions
+9 -6
View File
@@ -52,12 +52,15 @@ class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: StreamChat(
client: client,
child: StreamChannel(
channel: channel,
child: ChannelPage(),
),
builder: (context, widget) {
return StreamChat(
child: widget,
client: client,
);
},
home: StreamChannel(
channel: channel,
child: ChannelPage(),
),
);
}