Hi Brian, I'm stuck at the 5 minute part. I did everything as you did, but couldn't get the MainTabBarController to show up with a green background.
I wen't to the scene delegate and typed the following but the build failed:
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
if let windowScene = scene as? UIWindowScene {
let window = UIWindow(windowScene: windowScene)
window.rootViewController = UIHostingController(rootView: contentView)
window.rootViewController = MainTabBarController()
self.window = window
window.makeKeyAndVisible()
}
}
}