Merge pull request #1596 from GetStream/fix/channel-info-bottom-sheet
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
|
||||
the persistent storage.
|
||||
|
||||
|
||||
🔄 Changed
|
||||
|
||||
- Updated `dio` dependency to `^5.2.0`.
|
||||
|
||||
@@ -3,6 +3,8 @@
|
||||
🐞 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.
|
||||
|
||||
🔄 Changed
|
||||
|
||||
|
||||
+5
-3
@@ -91,12 +91,14 @@ class StreamChannelInfoBottomSheet extends StatelessWidget {
|
||||
final member = members[index];
|
||||
final user = member.user!;
|
||||
return Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
StreamUserAvatar(
|
||||
user: user,
|
||||
constraints: const BoxConstraints(
|
||||
maxHeight: 64,
|
||||
maxWidth: 64,
|
||||
constraints: const BoxConstraints.tightFor(
|
||||
height: 64,
|
||||
width: 64,
|
||||
),
|
||||
borderRadius: BorderRadius.circular(32),
|
||||
onlineIndicatorConstraints: BoxConstraints.tight(
|
||||
|
||||
Reference in New Issue
Block a user