Compare commits

3 Commits

2 changed files with 7 additions and 3 deletions

View File

@@ -189,6 +189,7 @@ class HttpUtils {
}
if (resultCode.toUpperCase() == "UNLOGIN") {
ToastUtils.showToast(msg: map['resultMsg']);
unLoginAction?.call();
return;
}

View File

@@ -133,9 +133,12 @@ class _UploadImagesState extends State<UploadImages> {
}) {
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,
),
),
);
}