fix: Removed bubble for giphy, changed border radii

This commit is contained in:
Deven Joshi
2020-11-04 19:21:33 +05:30
parent 88501ed4f8
commit 70e7a8dc83
+8 -2
View File
@@ -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,