Merge remote-tracking branch 'origin/main'

This commit is contained in:
2026-04-22 11:36:08 +08:00
2 changed files with 7 additions and 3 deletions

View File

@@ -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;
} }

View File

@@ -133,10 +133,13 @@ class _UploadImagesState extends State<UploadImages> {
}) { }) {
return GestureDetector( return GestureDetector(
onTap: () => widget.oneTap?.call(index), onTap: () => widget.oneTap?.call(index),
child: ClipRRect(
borderRadius: BorderRadiusGeometry.circular(20.r),
child: CustomerImagesNetworking( child: CustomerImagesNetworking(
imageUrl: imageUrl, imageUrl: imageUrl,
fit: widget.fit ?? BoxFit.cover, fit: widget.fit ?? BoxFit.cover,
), ),
),
); );
} }