The status bar can be hidden using the ._statusBarHidden() modifier.
example: struct ContentView: View { var body: some View {
VStack{
Text("Watch View")
.padding()
/* The following line hides the status bar */
._statusBarHidden()
}
}
}