Merge remote-tracking branch 'origin/main'
This commit is contained in:
@@ -189,6 +189,7 @@ class HttpUtils {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (resultCode.toUpperCase() == "UNLOGIN") {
|
if (resultCode.toUpperCase() == "UNLOGIN") {
|
||||||
|
ToastUtils.showToast(msg: map['resultMsg']);
|
||||||
unLoginAction?.call();
|
unLoginAction?.call();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -133,9 +133,12 @@ class _UploadImagesState extends State<UploadImages> {
|
|||||||
}) {
|
}) {
|
||||||
return GestureDetector(
|
return GestureDetector(
|
||||||
onTap: () => widget.oneTap?.call(index),
|
onTap: () => widget.oneTap?.call(index),
|
||||||
child: CustomerImagesNetworking(
|
child: ClipRRect(
|
||||||
imageUrl: imageUrl,
|
borderRadius: BorderRadiusGeometry.circular(20.r),
|
||||||
fit: widget.fit ?? BoxFit.cover,
|
child: CustomerImagesNetworking(
|
||||||
|
imageUrl: imageUrl,
|
||||||
|
fit: widget.fit ?? BoxFit.cover,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user