Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

swiftui - Navigation Title Issue

I have a navigation title for a list view. After navigating back and forth, my navigation title is missing. I am new to swiftui and unable to debug. Kindly help.

    var body: some View {
    
    NavigationView {
        
        VStack {
            
            TabView(selection: $choice,
                    content:  {
                        
                        OPListCell()

                        IPListCell()
                        
                    })
                .tabViewStyle(PageTabViewStyle())
            
        }
        .listStyle(PlainListStyle())
        .navigationBarTitle("My Patients")
        .toolbar {
            ToolbarItem(placement: .principal) {
                
                HStack {
                    Picker(selection: self.$choice, label: Text("")) {
                        ForEach(0 ..< self.choices.count) {
                            Text(self.choices[$0])
                        }
                    }
                    .frame(width: 175)
                    .pickerStyle(SegmentedPickerStyle())
                    .padding(.leading, 10)
                }
            }
            
        }
        
    }
    
}

}

enter image description here

question from:https://stackoverflow.com/questions/65843937/navigation-title-issue

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...