fix link image size

This commit is contained in:
Salvatore Giordano
2021-01-08 14:47:11 +01:00
parent f57cb77546
commit d7aaa9614b
2 changed files with 6 additions and 4 deletions
+4 -4
View File
@@ -34,10 +34,10 @@ class UrlAttachment extends StatelessWidget {
margin: EdgeInsets.symmetric(horizontal: 8.0),
child: Stack(
children: [
Center(
child: CachedNetworkImage(
imageUrl: urlAttachment.imageUrl,
),
CachedNetworkImage(
width: double.infinity,
imageUrl: urlAttachment.imageUrl,
fit: BoxFit.cover,
),
Positioned(
left: 0.0,