splash 进度条配色:systemBlue 填充 + .label 15% alpha 轨道

跟错误态"重试"主按钮 systemBlue 视觉一致;轨道用 .label 系统语义色
的 15% alpha,浅深模式自适应(浅模式淡灰、深模式淡白),在浅色启动图
上比默认 UIProgressView 灰条更显眼。

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
joywayer
2026-06-23 07:13:13 +08:00
co-authored by Claude Opus 4.7
parent 34f76e8824
commit 0e446df97a
@@ -566,6 +566,10 @@ private final class SplashOverlay: UIView {
progressView.translatesAutoresizingMaskIntoConstraints = false
progressView.isHidden = true
// "" systemBlue
// .label 15% alpha
progressView.progressTintColor = .systemBlue
progressView.trackTintColor = UIColor.label.withAlphaComponent(0.15)
addSubview(progressView)
setupErrorContainer()