From 70e7a8dc83d352889840070bb7da29a16fee8de4 Mon Sep 17 00:00:00 2001 From: Deven Joshi Date: Wed, 4 Nov 2020 19:21:33 +0530 Subject: [PATCH] fix: Removed bubble for giphy, changed border radii --- lib/src/giphy_attachment.dart | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/src/giphy_attachment.dart b/lib/src/giphy_attachment.dart index fbb2e585..d6d378d2 100644 --- a/lib/src/giphy_attachment.dart +++ b/lib/src/giphy_attachment.dart @@ -46,8 +46,14 @@ class GiphyAttachment extends StatelessWidget { children: [ Card( clipBehavior: Clip.antiAlias, - shape: - RoundedRectangleBorder(borderRadius: BorderRadius.circular(8.0)), + shape: RoundedRectangleBorder( + borderRadius: BorderRadius.only( + topRight: Radius.circular(16.0), + bottomRight: Radius.circular(0.0), + topLeft: Radius.circular(16.0), + bottomLeft: Radius.circular(16.0), + ), + ), child: Column( mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.stretch,