design: Adjust reply design

This commit is contained in:
krille-chan 2023-12-23 07:06:38 +01:00
commit a615de889e
No known key found for this signature in database
2 changed files with 64 additions and 63 deletions

View file

@ -225,18 +225,14 @@ class Message extends StatelessWidget {
originServerTs: DateTime.now(),
);
return InkWell(
borderRadius: ReplyContent.borderRadius,
onTap: () =>
scrollToEventId(replyEvent.eventId),
child: AbsorbPointer(
child: Container(
margin: const EdgeInsets.symmetric(
vertical: 4.0,
),
child: ReplyContent(
replyEvent,
ownMessage: ownMessage,
timeline: timeline,
),
child: ReplyContent(
replyEvent,
ownMessage: ownMessage,
timeline: timeline,
),
),
);