From c8a8b81102853a8fd9681cbf8accfdd058204b1e Mon Sep 17 00:00:00 2001 From: Deven Joshi Date: Wed, 4 Nov 2020 17:02:31 +0530 Subject: [PATCH] fix: Added visibility message --- lib/src/giphy_attachment.dart | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/src/giphy_attachment.dart b/lib/src/giphy_attachment.dart index c96f34fd..7bb76a84 100644 --- a/lib/src/giphy_attachment.dart +++ b/lib/src/giphy_attachment.dart @@ -235,7 +235,7 @@ class GiphyAttachment extends StatelessWidget { Align( alignment: Alignment.centerRight, child: Padding( - padding: const EdgeInsets.symmetric(horizontal: 8.0), + padding: const EdgeInsets.symmetric(horizontal: 8.0, vertical: 4.0), child: Row( mainAxisSize: MainAxisSize.min, children: [ @@ -245,11 +245,14 @@ class GiphyAttachment extends StatelessWidget { size: 16.0, ), SizedBox( - width: 4.0, + width: 8.0, ), Text( 'Only visible to you', - style: TextStyle(color: Colors.black.withOpacity(0.5)), + style: TextStyle( + color: Colors.black.withOpacity(0.5), + fontSize: 12.0, + ), ), ], ),