绿色的点击手势不起作用。有人对此有解决方案吗?
ZStack {
Color.green
.onTapGesture {
print("green")
}
ScrollView {
VStack {
Spacer(minLength: 500)
Color.red
.onTapGesture {
print("red")
}
.frame(height: 800)
}
}
}