- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 SwiftUI 应用程序中更改应用程序色调颜色的最佳方法是什么?
它由新的 SwiftUI 生命周期提供支持,因此我无法选择执行 self.?tintColor
另外,我该如何实现这个菜单?
(猜猜它正在使用选择器和表单,但我无法在颜色名称旁边添加圆圈)
尝试在此处搜索,但在 SwiftUI 生命周期应用程序中找不到任何方法。
最佳答案
在 SceneDelegate.swift
在为应用程序创建窗口的地方,您可以使用 tintColor
全局设置色调颜色UIWindow
的属性(property)
let contentView = ContentView()
if let windowScene = scene as? UIWindowScene {
let window = UIWindow(windowScene: windowScene)
window.rootViewController = UIHostingController(rootView: contentView)
self.window = window
self.window?.tintColor = UIColor.red // Or any other color you want
window.makeKeyAndVisible()
}
编辑
private struct TintKey: EnvironmentKey {
static let defaultValue: Color = Color.blue
}
extension EnvironmentValues {
var tintColor: Color {
get { self[TintKey.self] }
set { self[TintKey.self] = newValue }
}
}
@main
struct YourApp: App {
var body: some Scene {
WindowGroup {
ContentView().environment(\.tintColor, Color.red)
}
}
}
然后在您的 View 中,您将像这样使用它:
struct ContentView: View {
@Environment(\.tintColor) var tintColor
var body: some View {
VStack {
Text("Hello, world!")
.padding()
Button(action: {}, label: {
Text("Button")
})
}.accentColor(tintColor)
}
}
关于swift - 如何更改应用程序色调颜色(新的 SwiftUI 生命周期应用程序)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64065134/
我正在开发一个使用多个 turtle 的滚动游戏。玩家 turtle 根据按键命令在 Y 轴上移动。当危害和好处在 X 轴上移动时,然后循环并改变 Y 轴位置。我尝试定义一个名为 colliding(
我不明白为什么他们不接受这个作为解决方案,他们说这是一个错误的答案:- #include int main(void) { int val=0; printf("Input:- \n
我正在使用基于表单的身份验证。 我有一个注销链接,如下所示: 以及对应的注销方法: public String logout() { FacesContext.getCurren
在 IIS7 应用程序池中有一个设置 Idle-time out 默认是 20 分钟,其中说: Amount of time(in minutes) a worker process will rem
我是一名优秀的程序员,十分优秀!