I’m working on a full-screen Apple watch app. According to these answers (1, 2, 3), it’s not possible to hide the top-right digit clock. My question is, is it possible to listen to gestures that started at the clock area, like tap and drag? Based on my test, gestures can be triggered at everywhere except that area. Below is the demo code:
struct DemoView: View {
var body: some View {
VStack (alignment: .center){
Text("Test")
}
.frame(
maxWidth: .infinity,
maxHeight: .infinity,
alignment: .center)
.background(Color.cyan)
.navigationBarBackButtonHidden(true)
.onTapGesture {location in
print("tap at: \(location)")
}
}
}
Thanks.