Skip to content

Commit 51ad35b

Browse files
committed
msglist: Adjust padding around message content
1 parent c4c33c6 commit 51ad35b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/widgets/message_list.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -820,9 +820,9 @@ class MessageWithPossibleSender extends StatelessWidget {
820820
behavior: HitTestBehavior.translucent,
821821
onLongPress: () => showMessageActionSheet(context: context, message: message),
822822
child: Padding(
823-
padding: const EdgeInsets.only(top: 2, bottom: 3, left: 8, right: 8),
823+
padding: const EdgeInsets.symmetric(vertical: 2),
824824
child: Row(crossAxisAlignment: CrossAxisAlignment.start, children: [
825-
const SizedBox(width: 3 + 35 + 11),
825+
const SizedBox(width: 16),
826826
Expanded(
827827
child: Column(
828828
crossAxisAlignment: CrossAxisAlignment.stretch,
@@ -834,7 +834,7 @@ class MessageWithPossibleSender extends StatelessWidget {
834834
])),
835835
Container(
836836
width: 80,
837-
padding: const EdgeInsets.only(top: 4, right: 16 - 8),
837+
padding: const EdgeInsets.only(top: 4, right: 16),
838838
alignment: Alignment.topRight,
839839
child: Text(time,
840840
style: TextStyle(

0 commit comments

Comments
 (0)