chore: Follow up reply design

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

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

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

Loading…
Cancel
Save