Adrian Plapamaru
Adrian Plapamaru

Reputation: 19

WatchOS set title action

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

Answers (1)

Apix_D
Apix_D

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

Related Questions