Skip to content

Commit

Permalink
Merge pull request #292 from takenet/develop
Browse files Browse the repository at this point in the history
Release v0.3.2
  • Loading branch information
leonardogbr authored Jan 7, 2025
2 parents 3200c1c + 80e6971 commit 7ec5959
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.2

- [DSGroupCard] fix avatar with `simpleStyle` param

## 0.3.1

- [DSGroupCard] Improved the scrolling of reply messages
Expand Down
5 changes: 3 additions & 2 deletions lib/src/widgets/utils/ds_group_card.widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,9 @@ class _DSGroupCardState extends State<DSGroupCard> {
),
];

if ((sentMessage && widget.avatarConfig.showSentAvatar) ||
(!sentMessage && widget.avatarConfig.showReceivedAvatar)) {
if (!widget.simpleStyle &&
((sentMessage && widget.avatarConfig.showSentAvatar) ||
(!sentMessage && widget.avatarConfig.showReceivedAvatar))) {
columns.add(
const SizedBox.shrink(),
);
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: blip_ds
description: Blip Design System for Flutter.
version: 0.3.1
version: 0.3.2
homepage: https://github.com/takenet/blip-ds-flutter#readme
repository: https://github.com/takenet/blip-ds-flutter

Expand Down
10 changes: 5 additions & 5 deletions sample/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.2.6"
version: "0.3.2"
boolean_selector:
dependency: transitive
description:
Expand Down Expand Up @@ -695,14 +695,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "0.27.7"
scroll_to_index:
scrollview_observer:
dependency: transitive
description:
name: scroll_to_index
sha256: b707546e7500d9f070d63e5acf74fd437ec7eeeb68d3412ef7b0afada0b4f176
name: scrollview_observer
sha256: d607bc97165113b4ce6aa860a3865cfa6b849445a48c216461d74bc96be6cb94
url: "https://pub.dev"
source: hosted
version: "3.0.1"
version: "1.24.0"
simple_animations:
dependency: transitive
description:
Expand Down

0 comments on commit 7ec5959

Please sign in to comment.