SwiftUI SignInWithAppleButton 暗模式 [重复]
Posted
技术标签:
【中文标题】SwiftUI SignInWithAppleButton 暗模式 [重复]【英文标题】:SwiftUI SignInWithAppleButton dark mode [duplicate] 【发布时间】:2021-11-24 23:26:47 【问题描述】:我在我的 SwiftUI 应用程序中使用 SignInWithAppleButton。但是,当我将设备置于暗模式时,按钮不会自动更改为人机界面指南建议的暗背景配色方案。我可以在不手动定义颜色的情况下启用该行为吗?
struct AuthenticationView: View
var authManager = AuthManager()
var body: some View
SignInWithAppleButton(
onRequest: request in
authManager.createRequest(request)
,
onCompletion: result in
authManager.handleResult(result)
)
.frame(width: 280, height: 45, alignment: .center)
【问题讨论】:
【参考方案1】:由于某种原因,按钮不会自动更新配色方案,但您可以使用以下代码修复它:
struct AuthenticationView: View
@Environment(\.colorScheme) private var colorScheme
let authManager = AuthManager()
private var buttonStyle: SignInWithAppleButton.Style
switch colorScheme
case .light: return .black
case .dark: return .white
@unknown default: return .black
var body: some View
SignInWithAppleButton(
.signIn,
onRequest: authManager.createRequest,
onCompletion: authManager.handleResult
)
.signInWithAppleButtonStyle(buttonStyle)
.id(colorScheme)
.frame(height: 56)
【讨论】:
以上是关于SwiftUI SignInWithAppleButton 暗模式 [重复]的主要内容,如果未能解决你的问题,请参考以下文章
SwiftUI NavigationLink 如何到达另一个 SwiftUI 页面?
SwiftUI - 如何在 SwiftUI 中弹出到特定视图?