struct ContentView: View {
@State var text = ""
var body: some View {
Form {
Button(action: {
print("Button pressed")
}) {
Text("Button")
}
}.simultaneousGesture(TapGesture().onEnded( { print("tap") }))
}
}
我需要同时捕获Form
上的Button动作和轻击手势,但是仅执行print("tap")
。对于VStack
来说还可以,但是Form
似乎有点特殊。有什么想法吗?
答案 0 :(得分:0)
如果您这样做,您将获得按钮点击(也有表单点击)。我不知道这是否对您有帮助。
@State var text = ""
var body: some View {
Form {
Button(action: {
}) {
Text("Button")
}.onTapGesture {
print("button")
}
}.onTapGesture {
print("form")
} }
}