I want implement a UI in tvOS. The hierarchy is like this:
App -> Tab Bar -> <Home, Search, Settings>
When I'm in Home and want to play a VOD, I want to hide tab bar (top menu) so the video is playing without overlay.
Using .isHidden
on TabView
result in hiding eveything because of the hierarchy.
Using .focused
also do nothing.
How to achieve it?