Skip to content

Commit

Permalink
v1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
prahack committed Jan 26, 2023
1 parent f9ab197 commit 4b02639
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [1.4.1] - 26/01/2023

* Support up-to-date dependencies

## [1.4.0] - 29/12/2022

* Add `BubbleNormalImage` image chat bubble widget
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Add this to your package's `pubspec.yaml` file:

```yaml
dependencies:
chat_bubbles: ^1.4.0
chat_bubbles: ^1.4.1
```
## Usage
Expand Down
11 changes: 4 additions & 7 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -230,19 +230,16 @@ class _MyHomePageState extends State<MyHomePage> {
}

Widget _image() {
return
Container(
return Container(
constraints: BoxConstraints(
minHeight: 20.0,
minWidth: 20.0,
),
child: CachedNetworkImage(
imageUrl: 'https://i.ibb.co/JCyT1kT/Asset-1.png',
progressIndicatorBuilder:
(context, url, downloadProgress) => CircularProgressIndicator(
value: downloadProgress.progress),
errorWidget: (context, url, error) =>
const Icon(Icons.error),
progressIndicatorBuilder: (context, url, downloadProgress) =>
CircularProgressIndicator(value: downloadProgress.progress),
errorWidget: (context, url, error) => const Icon(Icons.error),
),
);
}
Expand Down
4 changes: 2 additions & 2 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.3.1"
version: "1.4.0"
clock:
dependency: transitive
description:
Expand Down Expand Up @@ -155,7 +155,7 @@ packages:
name: intl
url: "https://pub.dartlang.org"
source: hosted
version: "0.17.0"
version: "0.18.0"
js:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ packages:
name: intl
url: "https://pub.dartlang.org"
source: hosted
version: "0.17.0"
version: "0.18.0"
matcher:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: chat_bubbles
description: Flutter chat bubble widgets, similar to Whatsapp and more shapes. Easy to use and implement
chat bubbles.
version: 1.4.0
version: 1.4.1
homepage: https://github.com/prahack/chat_bubbles

environment:
Expand All @@ -10,7 +10,7 @@ environment:
dependencies:
flutter:
sdk: flutter
intl: ^0.17.0
intl: ^0.18.0

dev_dependencies:
flutter_test:
Expand Down

0 comments on commit 4b02639

Please sign in to comment.