Skip to content
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
2 changes: 1 addition & 1 deletion docs/docs_screenshots/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies:
stream_core_flutter:
git:
url: https://github.com/GetStream/stream-core-flutter.git
ref: 333f7b72485f308b282cc85973223a2919fd8153
ref: 73ce5122a2f57e6106f35e95a2482bde0136a8e0
path: packages/stream_core_flutter

dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ command:
stream_core_flutter:
git:
url: https://github.com/GetStream/stream-core-flutter.git
ref: 333f7b72485f308b282cc85973223a2919fd8153
ref: 73ce5122a2f57e6106f35e95a2482bde0136a8e0
path: packages/stream_core_flutter
synchronized: ^3.4.0
thumblr: ^0.0.4
Expand Down
1 change: 1 addition & 0 deletions packages/stream_chat_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

🐞 Fixed

- `StreamUserAvatar` with `StreamAvatarSize.xxl` now uses `StreamOnlineIndicatorSize.xxl` (20px) instead of `xl` (16px), matching the Chat SDK design system spec.
- `StreamMessageComposer` no longer clobbers pre-populated composer state (text, quoted message, attachments) when the channel's draft stream emits its initial `null` (no draft on server). The reset now fires only on an actual non-null → null transition, distinguishing "no draft yet" from "draft was removed".

✅ Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ class StreamUserAvatar extends StatelessWidget {
.xs || .sm => StreamOnlineIndicatorSize.sm,
.md => StreamOnlineIndicatorSize.md,
.lg => StreamOnlineIndicatorSize.lg,
.xl || .xxl => StreamOnlineIndicatorSize.xl,
.xl => StreamOnlineIndicatorSize.xl,
.xxl => StreamOnlineIndicatorSize.xxl,
};
}

Expand Down
2 changes: 1 addition & 1 deletion packages/stream_chat_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ dependencies:
stream_core_flutter:
git:
url: https://github.com/GetStream/stream-core-flutter.git
ref: 333f7b72485f308b282cc85973223a2919fd8153
ref: 73ce5122a2f57e6106f35e95a2482bde0136a8e0
path: packages/stream_core_flutter
svg_icon_widget: ^0.0.1
synchronized: ^3.4.0
Expand Down
Loading