This commit is contained in:
Михаил Капелько
2023-12-13 19:01:08 +03:00
commit acaaf68d9f
27 changed files with 282 additions and 0 deletions

21
src/App.swift Normal file
View File

@@ -0,0 +1,21 @@
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()
vc.view.backgroundColor = .gray
window?.rootViewController = vc
window?.backgroundColor = UIColor.white
window?.makeKeyAndVisible()
return true
}
}