I have created a simple List with a horizontal stack view (label, button, button). each button has his own button action but when I run I can see tap on one button print two
Need to use onTapGesture instead of action like this way.
onTapGesture
action
Button(action: {}) { Text("watch") } .frame(minWidth: 0, maxWidth: .infinity) .background(Color.red) .onTapGesture { print("watch") }