@@ -164,7 +164,7 @@ class _MessageActionsModalState extends State<MessageActionsModal> {
|
|||||||
),
|
),
|
||||||
Padding(
|
Padding(
|
||||||
padding: EdgeInsets.only(
|
padding: EdgeInsets.only(
|
||||||
right: widget.reverse ? 16 : 0,
|
right: widget.reverse ? 8 : 0,
|
||||||
left: widget.reverse ? 0 : 48,
|
left: widget.reverse ? 0 : 48,
|
||||||
),
|
),
|
||||||
child: SizedBox(
|
child: SizedBox(
|
||||||
@@ -448,9 +448,7 @@ class _MessageActionsModalState extends State<MessageActionsModal> {
|
|||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
onTap: () {
|
onTap: () => _showFlagDialog(),
|
||||||
_showFlagDialog();
|
|
||||||
},
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1525,11 +1525,14 @@ class MessageInputState extends State<MessageInput> {
|
|||||||
return Transform(
|
return Transform(
|
||||||
transform: Matrix4.rotationY(pi),
|
transform: Matrix4.rotationY(pi),
|
||||||
alignment: Alignment.center,
|
alignment: Alignment.center,
|
||||||
child: QuotedMessageWidget(
|
child: Padding(
|
||||||
reverse: true,
|
padding: const EdgeInsets.fromLTRB(8, 8, 8, 0),
|
||||||
showBorder: !containsUrl,
|
child: QuotedMessageWidget(
|
||||||
message: widget.quotedMessage,
|
reverse: true,
|
||||||
messageTheme: StreamChatTheme.of(context).otherMessageTheme,
|
showBorder: !containsUrl,
|
||||||
|
message: widget.quotedMessage,
|
||||||
|
messageTheme: StreamChatTheme.of(context).otherMessageTheme,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
+8
-14
@@ -37,27 +37,21 @@ Future<bool> showConfirmationDialog(
|
|||||||
return Column(
|
return Column(
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
children: [
|
children: [
|
||||||
SizedBox(
|
SizedBox(height: 26.0),
|
||||||
height: 26.0,
|
|
||||||
),
|
|
||||||
if (icon != null) icon,
|
if (icon != null) icon,
|
||||||
SizedBox(
|
SizedBox(height: 26.0),
|
||||||
height: 26.0,
|
|
||||||
),
|
|
||||||
Text(
|
Text(
|
||||||
title,
|
title,
|
||||||
style: StreamChatTheme.of(context).textTheme.headlineBold,
|
style: StreamChatTheme.of(context).textTheme.headlineBold,
|
||||||
),
|
),
|
||||||
SizedBox(
|
SizedBox(height: 7.0),
|
||||||
height: 7.0,
|
Text(
|
||||||
),
|
question,
|
||||||
Text(question),
|
textAlign: TextAlign.center,
|
||||||
SizedBox(
|
|
||||||
height: 36.0,
|
|
||||||
),
|
),
|
||||||
|
SizedBox(height: 36.0),
|
||||||
Container(
|
Container(
|
||||||
color:
|
color: StreamChatTheme.of(context).colorTheme.greyGainsboro,
|
||||||
StreamChatTheme.of(context).colorTheme.black.withOpacity(.08),
|
|
||||||
height: 1.0,
|
height: 1.0,
|
||||||
),
|
),
|
||||||
Row(
|
Row(
|
||||||
|
|||||||
Reference in New Issue
Block a user