Merge branch 'develop' into develop
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
- [[#1585]](https://github.com/GetStream/stream-chat-flutter/issues/1585) Fixed channels left not being removed from
|
- [[#1585]](https://github.com/GetStream/stream-chat-flutter/issues/1585) Fixed channels left not being removed from
|
||||||
the persistent storage.
|
the persistent storage.
|
||||||
|
|
||||||
🔄 Changed
|
🔄 Changed
|
||||||
|
|
||||||
- Updated `dio` dependency to `^5.2.0`.
|
- Updated `dio` dependency to `^5.2.0`.
|
||||||
|
|||||||
@@ -1,3 +1,17 @@
|
|||||||
|
## Upcoming
|
||||||
|
|
||||||
|
🐞 Fixed
|
||||||
|
|
||||||
|
- [[#1592]](https://github.com/GetStream/stream-chat-flutter/issues/1592) Fixed broken attachment download on web.
|
||||||
|
- [[#1591]](https://github.com/GetStream/stream-chat-flutter/issues/1591) Fixed `StreamChannelInfoBottomSheet` not
|
||||||
|
rendering member list properly.
|
||||||
|
- [[#1427]](https://github.com/GetStream/stream-chat-flutter/issues/1427) Fixed unable to load asset error for
|
||||||
|
`packages/stream_chat_flutter/lib/svgs/video_call_icon.svg`.
|
||||||
|
|
||||||
|
🔄 Changed
|
||||||
|
|
||||||
|
- Updated `dio` dependency to `^5.2.0`.
|
||||||
|
|
||||||
## 6.2.0
|
## 6.2.0
|
||||||
|
|
||||||
🐞 Fixed
|
🐞 Fixed
|
||||||
|
|||||||
+5
-3
@@ -91,12 +91,14 @@ class StreamChannelInfoBottomSheet extends StatelessWidget {
|
|||||||
final member = members[index];
|
final member = members[index];
|
||||||
final user = member.user!;
|
final user = member.user!;
|
||||||
return Column(
|
return Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
StreamUserAvatar(
|
StreamUserAvatar(
|
||||||
user: user,
|
user: user,
|
||||||
constraints: const BoxConstraints(
|
constraints: const BoxConstraints.tightFor(
|
||||||
maxHeight: 64,
|
height: 64,
|
||||||
maxWidth: 64,
|
width: 64,
|
||||||
),
|
),
|
||||||
borderRadius: BorderRadius.circular(32),
|
borderRadius: BorderRadius.circular(32),
|
||||||
onlineIndicatorConstraints: BoxConstraints.tight(
|
onlineIndicatorConstraints: BoxConstraints.tight(
|
||||||
|
|||||||
Reference in New Issue
Block a user