From be09e6e69763ac333f671b8794ceb0cad8420e83 Mon Sep 17 00:00:00 2001 From: joywayer Date: Tue, 23 Jun 2026 07:29:57 +0800 Subject: [PATCH] =?UTF-8?q?splash=20=E8=BF=9B=E5=BA=A6=E6=9D=A1=E5=AE=BD?= =?UTF-8?q?=E5=BA=A6=E4=BB=8E=E5=B1=8F=E5=B9=95=2045%=20=E5=8A=A0=E9=95=BF?= =?UTF-8?q?=E5=88=B0=2070%?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 原 0.45 倍宽度在横屏中央显得偏短,下载进度反馈不够明显。加长到 0.7 倍 更接近常见 app 启动进度条视觉。 Co-Authored-By: Claude Opus 4.7 --- ylgamehall/Source/WebView/WebContainerViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ylgamehall/Source/WebView/WebContainerViewController.swift b/ylgamehall/Source/WebView/WebContainerViewController.swift index 2690436..31aefb0 100644 --- a/ylgamehall/Source/WebView/WebContainerViewController.swift +++ b/ylgamehall/Source/WebView/WebContainerViewController.swift @@ -672,7 +672,7 @@ private final class SplashOverlay: UIView { progressView.centerXAnchor.constraint(equalTo: centerXAnchor), progressView.bottomAnchor.constraint(equalTo: label.topAnchor, constant: -12), - progressView.widthAnchor.constraint(equalTo: widthAnchor, multiplier: 0.45), + progressView.widthAnchor.constraint(equalTo: widthAnchor, multiplier: 0.7), errorContainer.centerXAnchor.constraint(equalTo: centerXAnchor), errorContainer.centerYAnchor.constraint(equalTo: centerYAnchor, constant: 60),