Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.3.2 #292

Merged
merged 2 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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