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:
co-authored by
Claude Opus 4.7
parent
34f76e8824
commit
0e446df97a
@@ -566,6 +566,10 @@ private final class SplashOverlay: UIView {
|
|||||||
|
|
||||||
progressView.translatesAutoresizingMaskIntoConstraints = false
|
progressView.translatesAutoresizingMaskIntoConstraints = false
|
||||||
progressView.isHidden = true
|
progressView.isHidden = true
|
||||||
|
// 与错误态主按钮("重试")配色一致,进度条用 systemBlue;
|
||||||
|
// 轨道用 .label 的 15% alpha,浅深模式自适应(浅模式淡灰、深模式淡白)
|
||||||
|
progressView.progressTintColor = .systemBlue
|
||||||
|
progressView.trackTintColor = UIColor.label.withAlphaComponent(0.15)
|
||||||
addSubview(progressView)
|
addSubview(progressView)
|
||||||
|
|
||||||
setupErrorContainer()
|
setupErrorContainer()
|
||||||
|
|||||||
Reference in New Issue
Block a user