Full Screen on WatchOS 7 doesn't work

Hi,

I have an app with a root HostingController having "Full Screen" enabled. It works perfectly find on WatchOS 6 but with WatchOS 7, the content under the nav bar gets hidden behind a black strip as if "Full Screen" isn't working at all.

Has anyone else faced this issue?
Answered by Hendricks in 631675022
I ran into the same issue. On watchOS 7 my full screen views started to show the black strip you mentioned.

I was able to fix this by adding the navigationBarHidden modifier to my full screen views. As an example:

MyFullScreenView()
.navigationBarHidden(true)


Accepted Answer
I ran into the same issue. On watchOS 7 my full screen views started to show the black strip you mentioned.

I was able to fix this by adding the navigationBarHidden modifier to my full screen views. As an example:

MyFullScreenView()
.navigationBarHidden(true)


@Hendricks, That solved it for me. I can't thank you enough!
Full Screen on WatchOS 7 doesn't work
 
 
Q