gpt4 book ai didi

ios - 有没有办法从 SwiftUI 中的 ButtonStyle 获取 isDisabled 状态?

转载 作者:行者123 更新时间:2023-12-04 08:47:10 24 4
gpt4 key购买 nike

我正在制作自己的自定义按钮样式以简化按钮的外观和感觉。根据按钮是否被禁用,我想更改外观。我发现能够做到这一点的唯一方法是通过 isDisabled从顶部的属性(property)。有没有办法直接从 ButtonStyle ?

struct CellButtonStyle: ButtonStyle {

// Passed from the top... can I get this directly from configuration?
let isDisabled: Bool

func makeBody(configuration: Self.Configuration) -> some View {
let backgroundColor = isDisabled ? Color.white : Color.black
return configuration.label
.padding(7)
.background(isDisabled || configuration.isPressed ? backgroundColor.opacity(disabledButtonOpacity) : backgroundColor)

}
}
实际的问题是它会导致处理 isDisabled 的代码重复。创建按钮时的标志:
Button {
invitedContacts.insert(contact.identifier)
} label: {
Text(invitedContacts.contains(contact.identifier) ? "Invited" : "Invite")
}
// Passing down isDisabled twice! Would be awesome for the configuration to figure it out directly.
.disabled(invitedContacts.contains(contact.identifier))
.buttonStyle(CellButtonStyle(isDisabled: invitedContacts.contains(contact.identifier)))

最佳答案

您可以使用 isEnabled环境值,但它不能直接在按钮样式中起作用,您需要一些 subview 。这是可能方法的演示(您可以通过构造函数注入(inject)的所有附加参数)
使用 Xcode 12/iOS 14 测试。

struct CellButtonStyle: ButtonStyle {

struct CellBackground: View {
@Environment(\.isEnabled) var isEnabled // << here !!
var body: some View {
Rectangle().fill(isEnabled ? Color.black : Color.yellow)
}
}

func makeBody(configuration: Self.Configuration) -> some View {
return configuration.label
.padding(7)
.background(CellBackground()) // << here !!
}
}

关于ios - 有没有办法从 SwiftUI 中的 ButtonStyle 获取 isDisabled 状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64254439/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com