import MeetupIdX import UIKit @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application( _ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? ) -> Bool { window = UIWindow(frame: UIScreen.main.bounds) let vc = UIViewController() addSwiftUIViewAsChild(swiftUIView: MeetupId.V(), parent: vc.view) vc.view.backgroundColor = .white window?.rootViewController = vc window?.backgroundColor = UIColor.white window?.makeKeyAndVisible() return true } }