本文介绍了SwiftUI:强制视图使用明暗模式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以在 SwiftUI 中强制 View
使用明暗模式 - 就像 可以吗?
Is it possible in SwiftUI to force a View
to use light or dark mode — like overrideUserInterfaceStyle
in UIKit does?
推荐答案
.colorScheme()
已弃用 不适用于背景.
.colorScheme()
is deprecated does not work with the background well.
.preferredColorScheme()
是现在的方式.也有背景的工作.
.preferredColorScheme()
is the way now. Does the job with the background too.
TestView1()
.preferredColorScheme(.dark)
TestView2()
.preferredColorScheme(.light)
.preferredColorScheme()
的开发者文档
Developer docs for .preferredColorScheme()
这篇关于SwiftUI:强制视图使用明暗模式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!