Fix mobile cannot download attachment

This commit is contained in:
DatDang
2024-03-15 10:06:39 +07:00
committed by Dat H. Pham
parent 65b587b9a0
commit f342e14e7e
2 changed files with 2 additions and 2 deletions
@@ -47,7 +47,7 @@ class AttachmentItemWidget extends StatelessWidget {
return Material(
color: Colors.transparent,
child: InkWell(
onTap: isLoading ? null : () => viewAttachmentAction?.call(attachment),
onTap: isLoading ? null : () => (viewAttachmentAction ?? downloadAttachmentAction)?.call(attachment),
customBorder: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(AttachmentItemWidgetStyle.radius))
),
@@ -46,7 +46,7 @@ class AttachmentListItemWidget extends StatelessWidget {
return Material(
type: MaterialType.transparency,
child: InkWell(
onTap: isLoading ? null : () => viewAttachmentAction?.call(attachment),
onTap: isLoading ? null : () => (viewAttachmentAction?? downloadAttachmentAction)?.call(attachment),
child: Padding(
padding: AttachmentListItemWidgetStyle.contentPadding,
child: Row(