Is there a way to read the Action button of the Apple Watch Ultra in SwiftUI?
You can read the Digital Crown like in the example below, but I've found nothing similar for the Action button?
struct DigitalCrown: View {
@State private var crownValue = 0.0
var body: some View {
Text("Received Value:\(crownValue, specifier: "%.1f")")
.focusable()
.digitalCrownRotation($crownValue)
}
}
