在.focusable()
视图中添加Button
似乎无效。事件处理程序也不会触发。
Button(action: {}) {
Text("one")
}
.focusable(true) { _ in
print("focused one") // never fires
}
Button(action: {}) {
Text("two")
}
.focusable(true) { _ in
print("focused two") // never fires
}
有没有一种方法可以使按钮以标签为焦点?