Merge pull request #1536 from GetStream/fix/message-dialog-backdrop
This commit is contained in:
@@ -19,6 +19,8 @@
|
|||||||
string as text on Flutter 3.10.
|
string as text on Flutter 3.10.
|
||||||
- [[#1533]](https://github.com/GetStream/stream-chat-flutter/issues/1533) Fixed `StreamMessageListView` messages grouped
|
- [[#1533]](https://github.com/GetStream/stream-chat-flutter/issues/1533) Fixed `StreamMessageListView` messages grouped
|
||||||
incorrectly w.r.t. timestamp.
|
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
|
✅ Added
|
||||||
|
|
||||||
|
|||||||
@@ -1144,6 +1144,7 @@ class _StreamMessageWidgetState extends State<StreamMessageWidget>
|
|||||||
showDialog(
|
showDialog(
|
||||||
useRootNavigator: false,
|
useRootNavigator: false,
|
||||||
context: context,
|
context: context,
|
||||||
|
useSafeArea: false,
|
||||||
barrierColor: _streamChatTheme.colorTheme.overlay,
|
barrierColor: _streamChatTheme.colorTheme.overlay,
|
||||||
builder: (context) => StreamChannel(
|
builder: (context) => StreamChannel(
|
||||||
channel: channel,
|
channel: channel,
|
||||||
|
|||||||
@@ -433,6 +433,7 @@ class MessageWidgetContent extends StatelessWidget {
|
|||||||
showDialog(
|
showDialog(
|
||||||
useRootNavigator: false,
|
useRootNavigator: false,
|
||||||
context: context,
|
context: context,
|
||||||
|
useSafeArea: false,
|
||||||
barrierColor: streamChatTheme.colorTheme.overlay,
|
barrierColor: streamChatTheme.colorTheme.overlay,
|
||||||
builder: (context) => StreamChannel(
|
builder: (context) => StreamChannel(
|
||||||
channel: channel,
|
channel: channel,
|
||||||
|
|||||||
Reference in New Issue
Block a user