diff --git a/lib/widgets/attachments/attachment_item.dart b/lib/widgets/attachments/attachment_item.dart index 06a4651..31c8001 100644 --- a/lib/widgets/attachments/attachment_item.dart +++ b/lib/widgets/attachments/attachment_item.dart @@ -68,8 +68,10 @@ class _AttachmentItemState extends State { imageUrl: '${ServiceFinder.services['paperclip']}/api/attachments/${widget.item.id}', progressIndicatorBuilder: (context, url, downloadProgress) => - CircularProgressIndicator( - value: downloadProgress.progress, + Center( + child: CircularProgressIndicator( + value: downloadProgress.progress, + ), ), fit: widget.fit, )