UI Tab Bar

Anyone else get these warnings when using UI Tab Bar in visionOS? Are these detrimental to pushing my visionOS app to the App Review Team?

import SwiftUI import UIKit

struct HomeScreenWrapper: UIViewControllerRepresentable {

func makeUIViewController(context: Context) -> UITabBarController {
    let tabBarController = UITabBarController()

    // Home View Controller
    let homeVC = UIHostingController(rootView: HomeScreen())
    homeVC.tabBarItem = UITabBarItem(title: "Home", image: UIImage(systemName: "house"), tag: 0)

    // Brands View Controller
    let brandsVC = UIHostingController(rootView: BrandSelection())
    brandsVC.tabBarItem = UITabBarItem(title: "Brands", image: UIImage(systemName: "bag"), tag: 1)

    tabBarController.viewControllers = [homeVC, brandsVC]
    return tabBarController
}

func updateUIViewController(_ uiViewController: UITabBarController, context: Context) {
    // Update the UI if needed
}

}

struct HomeScreenWrapper_Previews: PreviewProvider { static var previews: some View { HomeScreenWrapper() } }

These logs might indicate issues in your app (especially that second one) or in the UI framework (in which case filing a feedback would be appreciated). Try to see if you can resolve them and make sure that your app works properly and you should be able to submit it.

UI Tab Bar
 
 
Q