mirror of
https://github.com/BetterAndroid/FlexiUI.git
synced 2025-09-07 19:14:12 +08:00
16 lines
477 B
Swift
16 lines
477 B
Swift
import UIKit
|
|
import shared
|
|
|
|
@UIApplicationMain
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
var window: UIWindow?
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
|
window = UIWindow(frame: UIScreen.main.bounds)
|
|
window?.rootViewController = UIViewControllerKt.createUIViewController()
|
|
window?.makeKeyAndVisible()
|
|
return true
|
|
}
|
|
}
|