我无法隐藏NavigationView
酒吧。我尝试了两种变体:
代码1:
public var body: some View { NavigationView { MasterView() .navigationBarHidden(true) } }
代码2:
public var body: some View { NavigationView { MasterView() } .navigationBarHidden(true) }
有谁知道如何解决它?
Seems that the solution could be adding a title or removing the space from safe area.
The problem:
Solution 1:
.navigationBarHidden(true) .navigationBarTitle(Text("Home"))
Solution 2 (this seems be the best):
.navigationBarHidden(true) .navigationBarTitle(Text("Home")) .edgesIgnoringSafeArea([.top, .bottom])