I am using xcode 13.4.1 for build apps and also Hostingviewcontroller to host SwiftUI views. If I deploy the app in iOS 16, navigation bar is not hiding properly.
class HomeViewController: UIHostingController<HomeView> {
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
navigationController?.setNavigationBarHidden(true, animated: false)
}
}