diff --git a/lib/upload_image/upload_image.dart b/lib/upload_image/upload_image.dart index 17fc181..832f75b 100644 --- a/lib/upload_image/upload_image.dart +++ b/lib/upload_image/upload_image.dart @@ -133,9 +133,12 @@ class _UploadImagesState extends State { }) { return GestureDetector( onTap: () => widget.oneTap?.call(index), - child: CustomerImagesNetworking( - imageUrl: imageUrl, - fit: widget.fit ?? BoxFit.cover, + child: ClipRRect( + borderRadius: BorderRadiusGeometry.circular(20.r), + child: CustomerImagesNetworking( + imageUrl: imageUrl, + fit: widget.fit ?? BoxFit.cover, + ), ), ); }