remove transform
This commit is contained in:
@@ -1473,16 +1473,12 @@ class MessageInputState extends State<MessageInput> {
|
|||||||
final containsUrl = widget.quotedMessage!.attachments
|
final containsUrl = widget.quotedMessage!.attachments
|
||||||
.any((element) => element.ogScrapeUrl != null) ==
|
.any((element) => element.ogScrapeUrl != null) ==
|
||||||
true;
|
true;
|
||||||
return Transform(
|
return QuotedMessageWidget(
|
||||||
transform: Matrix4.rotationY(pi),
|
reverse: true,
|
||||||
alignment: Alignment.center,
|
showBorder: !containsUrl,
|
||||||
child: QuotedMessageWidget(
|
message: widget.quotedMessage!,
|
||||||
reverse: true,
|
messageTheme: StreamChatTheme.of(context).otherMessageTheme,
|
||||||
showBorder: !containsUrl,
|
padding: const EdgeInsets.fromLTRB(8, 8, 8, 0),
|
||||||
message: widget.quotedMessage!,
|
|
||||||
messageTheme: StreamChatTheme.of(context).otherMessageTheme,
|
|
||||||
padding: const EdgeInsets.fromLTRB(8, 8, 8, 0),
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user