Merge pull request #1536 from GetStream/fix/message-dialog-backdrop

This commit is contained in:
Sahil Kumar
2023-05-12 16:29:08 +05:30
committed by GitHub
3 changed files with 4 additions and 0 deletions
@@ -19,6 +19,8 @@
string as text on Flutter 3.10.
- [[#1533]](https://github.com/GetStream/stream-chat-flutter/issues/1533) Fixed `StreamMessageListView` messages grouped
incorrectly w.r.t. timestamp.
- [[#1532]](https://github.com/GetStream/stream-chat-flutter/issues/1532) Fixed `StreamMessageWidget` actions dialog
backdrop filter is cut off by safe area.
✅ Added
@@ -1144,6 +1144,7 @@ class _StreamMessageWidgetState extends State<StreamMessageWidget>
showDialog(
useRootNavigator: false,
context: context,
useSafeArea: false,
barrierColor: _streamChatTheme.colorTheme.overlay,
builder: (context) => StreamChannel(
channel: channel,
@@ -433,6 +433,7 @@ class MessageWidgetContent extends StatelessWidget {
showDialog(
useRootNavigator: false,
context: context,
useSafeArea: false,
barrierColor: streamChatTheme.colorTheme.overlay,
builder: (context) => StreamChannel(
channel: channel,