Skip to content

Commit 24bb4fe

Browse files
committed
msglist: Adjust padding around message content
1 parent 4537a5a commit 24bb4fe

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
@@ -818,9 +818,9 @@ class MessageWithPossibleSender extends StatelessWidget {
818818
behavior: HitTestBehavior.translucent,
819819
onLongPress: () => showMessageActionSheet(context: context, message: message),
820820
child: Padding(
821-
padding: const EdgeInsets.only(top: 2, bottom: 3, left: 8, right: 8),
821+
padding: const EdgeInsets.symmetric(vertical: 2),
822822
child: Row(crossAxisAlignment: CrossAxisAlignment.start, children: [
823-
const SizedBox(width: 3 + 35 + 11),
823+
const SizedBox(width: 16),
824824
Expanded(
825825
child: Column(
826826
crossAxisAlignment: CrossAxisAlignment.stretch,
@@ -832,7 +832,7 @@ class MessageWithPossibleSender extends StatelessWidget {
832832
])),
833833
Container(
834834
width: 80,
835-
padding: const EdgeInsets.only(top: 4, right: 16 - 8),
835+
padding: const EdgeInsets.only(top: 4, right: 16),
836836
alignment: Alignment.topRight,
837837
child: Text(time,
838838
style: TextStyle(

0 commit comments

Comments
 (0)