Merge branch 'master' into feature/offline

This commit is contained in:
Salvatore Giordano
2020-03-13 10:03:30 +01:00
5 changed files with 9 additions and 8 deletions
+4
View File
@@ -1,3 +1,7 @@
## 0.1.10
- Do not automatically dispose Client object when disposing StreamChat widget
## 0.1.9 ## 0.1.9
- Fix message ui overflow - Fix message ui overflow
+1 -1
View File
@@ -30,7 +30,7 @@ The example is available under the [example](https://github.com/GetStream/stream
```yaml ```yaml
dependencies: dependencies:
stream_chat_flutter: ^0.1.7 stream_chat_flutter: ^0.1.10
``` ```
You should then run `flutter packages get` You should then run `flutter packages get`
+3 -5
View File
@@ -31,11 +31,9 @@ class MyApp extends StatelessWidget {
brightness: Brightness.light, brightness: Brightness.light,
), ),
), ),
home: Container( home: StreamChat(
child: StreamChat( client: client,
client: client, child: ChannelListPage(),
child: ChannelListPage(),
),
), ),
); );
} }
-1
View File
@@ -216,7 +216,6 @@ class StreamChatState extends State<StreamChat> {
@override @override
void dispose() { void dispose() {
widget.client.dispose();
_subscriptions.forEach((s) => s.cancel()); _subscriptions.forEach((s) => s.cancel());
_queryChannelsLoadingController.close(); _queryChannelsLoadingController.close();
super.dispose(); super.dispose();
+1 -1
View File
@@ -1,7 +1,7 @@
name: stream_chat_flutter name: stream_chat_flutter
homepage: https://github.com/GetStream/stream-chat-flutter homepage: https://github.com/GetStream/stream-chat-flutter
description: Stream Chat official Flutter SDK. Build your own chat experience using Dart and Flutter. description: Stream Chat official Flutter SDK. Build your own chat experience using Dart and Flutter.
version: 0.1.9 version: 0.1.10
environment: environment:
sdk: ">=2.3.0 <3.0.0" sdk: ">=2.3.0 <3.0.0"