From c14bcefe201b74ed59ba9d459a8bbc439bf2bf04 Mon Sep 17 00:00:00 2001 From: Sahil Kumar Date: Fri, 8 Jan 2021 19:58:16 +0530 Subject: [PATCH] [QuotedMessageWidget] Remove bottom padding Signed-off-by: Sahil Kumar --- lib/src/quoted_message_widget.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/quoted_message_widget.dart b/lib/src/quoted_message_widget.dart index 7c5dd512..c0439d46 100644 --- a/lib/src/quoted_message_widget.dart +++ b/lib/src/quoted_message_widget.dart @@ -111,7 +111,7 @@ class QuotedMessageWidget extends StatelessWidget { return InkWell( onTap: onTap, child: Padding( - padding: const EdgeInsets.only(top: 8, bottom: 6, right: 4, left: 8), + padding: const EdgeInsets.only(top: 8, right: 4, left: 8), child: Row( crossAxisAlignment: CrossAxisAlignment.end, mainAxisSize: MainAxisSize.min,