4

In swiftUI, iOS14. I can not hide the navigation bar of TabView. Here is my code:

struct ContentView: View {
    var body: some View {
        NavigationView {
            TabView() {
                List {
                    Text("Hi!")
                    Text("How are you?")
                }
            }
            .navigationTitle("")
            .navigationBarHidden(true) // not working!!
        }
    }
}

Is this a bug? How to resolve this problem?Navigation Bar exists!

蘇哲聖
  • 735
  • 9
  • 17

1 Answers1

3

You need to move .navigationBarHidden(true) inside to TabView.


  struct ContentView: View {
        var body: some View {
            NavigationView {
                TabView() {
                    List {
                        Text("Hi!")
                        Text("How are you?")
                    }
                    .navigationBarHidden(true) //<= here
                }
            }
        }
    }

YodagamaHeshan
  • 4,996
  • 2
  • 26
  • 36