Reputation: 19
When only a single interface is shown, is it possible to set an action when the top title is tapped? image
Upvotes: 1
Views: 119
Reputation: 1101
You did tried to add a simple action to your button, like this?
Button(action: {
//add your action
}, label: {
Text("End")
...
})
Upvotes: 0