From 8421faa450a73659ffe42cfdf2ec439fe420d820 Mon Sep 17 00:00:00 2001 From: Sahil Kumar Date: Mon, 4 Jan 2021 20:04:59 +0530 Subject: [PATCH] flutter format Signed-off-by: Sahil Kumar --- lib/src/message_widget.dart | 46 ++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/lib/src/message_widget.dart b/lib/src/message_widget.dart index 5cd0c441..597a60c6 100644 --- a/lib/src/message_widget.dart +++ b/lib/src/message_widget.dart @@ -400,30 +400,30 @@ class _MessageWidgetState extends State { ), color: _getBackgroundColor(), child: InkWell( - onLongPress: () => - onLongPress(context), - child: Padding( - padding: EdgeInsets.all( - hasFiles ? 2.0 : 0.0), - child: Column( - crossAxisAlignment: - CrossAxisAlignment - .start, - mainAxisSize: - MainAxisSize.min, - children: [ - if (_hasQuotedMessage) - _buildQuotedMessage( - isMyMessage), - ..._parseAttachments( - context), - if (widget.message.text - .trim() - .isNotEmpty && - !isGiphy) - _buildTextBubble( + onLongPress: () => + onLongPress(context), + child: Padding( + padding: EdgeInsets.all( + hasFiles ? 2.0 : 0.0), + child: Column( + crossAxisAlignment: + CrossAxisAlignment + .start, + mainAxisSize: + MainAxisSize.min, + children: [ + if (_hasQuotedMessage) + _buildQuotedMessage( + isMyMessage), + ..._parseAttachments( context), - ], + if (widget.message.text + .trim() + .isNotEmpty && + !isGiphy) + _buildTextBubble( + context), + ], ), ), ),