Parameters
Whether the view can receive touch events and user interaction.
Controls whether this view can receive touch events.
.allowsHitTesting(enabled: boolean): Component;
Rectangle()
.fill(Color("blue"))
.allowsHitTesting(false)
Button("Clickable", () => {})
.allowsHitTesting(true)