From fb95348ed4eb15ba93d9eafb702132af73aa38d9 Mon Sep 17 00:00:00 2001 From: Salvatore Giordano Date: Wed, 4 Mar 2020 17:58:25 +0100 Subject: [PATCH] version bump --- CHANGELOG.md | 4 ++++ lib/src/message_widget.dart | 10 ---------- pubspec.yaml | 2 +- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5c35df4..92295176 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.8 + +- Bug fix + ## 0.1.7 - Add chat commands diff --git a/lib/src/message_widget.dart b/lib/src/message_widget.dart index 31191d8a..b15fe903 100644 --- a/lib/src/message_widget.dart +++ b/lib/src/message_widget.dart @@ -731,16 +731,6 @@ class _MessageWidgetState extends State imageUrl: attachment.thumbUrl ?? attachment.imageUrl ?? attachment.assetUrl, fit: BoxFit.cover, - placeholderFadeInDuration: Duration(milliseconds: 300), - placeholder: (_, __) { - return SizedBox( - height: 200, - width: 300, - child: Center( - child: CircularProgressIndicator(), - ), - ); - }, ); } diff --git a/pubspec.yaml b/pubspec.yaml index 8bbb1e0d..a47c0f23 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: 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. -version: 0.1.7 +version: 0.1.8 environment: sdk: ">=2.2.2 <3.0.0"