chore: Follow up reply design

pull/750/head
krille-chan 1 year ago
parent 1f3d88d09c
commit b251a6a404
No known key found for this signature in database

@ -224,15 +224,18 @@ class Message extends StatelessWidget {
status: EventStatus.sent,
originServerTs: DateTime.now(),
);
return InkWell(
borderRadius: ReplyContent.borderRadius,
onTap: () =>
scrollToEventId(replyEvent.eventId),
child: AbsorbPointer(
child: ReplyContent(
replyEvent,
ownMessage: ownMessage,
timeline: timeline,
return Padding(
padding: const EdgeInsets.only(bottom: 4.0),
child: InkWell(
borderRadius: ReplyContent.borderRadius,
onTap: () =>
scrollToEventId(replyEvent.eventId),
child: AbsorbPointer(
child: ReplyContent(
replyEvent,
ownMessage: ownMessage,
timeline: timeline,
),
),
),
);

@ -38,7 +38,7 @@ class ReplyContent extends StatelessWidget {
children: <Widget>[
Container(
width: 3,
height: fontSize * 2 + 12,
height: fontSize * 2 + 16,
color: Theme.of(context).colorScheme.primary,
),
const SizedBox(width: 6),

Loading…
Cancel
Save