From 88501ed4f81cdd11d1a98479dc2bf8f03e080397 Mon Sep 17 00:00:00 2001 From: Deven Joshi Date: Wed, 4 Nov 2020 18:37:04 +0530 Subject: [PATCH] fix: Removed bubble for giphy, changed border radii --- lib/src/giphy_attachment.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/src/giphy_attachment.dart b/lib/src/giphy_attachment.dart index 66641f59..fbb2e585 100644 --- a/lib/src/giphy_attachment.dart +++ b/lib/src/giphy_attachment.dart @@ -269,10 +269,10 @@ class GiphyAttachment extends StatelessWidget { Container( decoration: BoxDecoration( borderRadius: BorderRadius.only( - topRight: Radius.circular(8.0), + topRight: Radius.circular(16.0), bottomRight: Radius.circular(0.0), - topLeft: Radius.circular(8.0), - bottomLeft: Radius.circular(8.0), + topLeft: Radius.circular(16.0), + bottomLeft: Radius.circular(16.0), ), ), clipBehavior: Clip.antiAlias,