-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTrackPlayApp.swift
More file actions
46 lines (31 loc) · 1.13 KB
/
TrackPlayApp.swift
File metadata and controls
46 lines (31 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// TrackPlayApp.swift
// TrackPlay
//
// Created by Demian Nezhdanov on 07/03/2024.
//
import SwiftUI
import SUCo
import MetalDevice
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
MTDevice.shared.setup(){
}
FontLoader.loadAllFonts()
// var model: MainViewController = MainViewController()
SUCoordinator.setup(statusBarIsHidden: true)
window = UIWindow(frame: UIScreen.main.bounds)
window?.rootViewController = SUCoordinator.navigation
window?.makeKeyAndVisible()
SUCoordinator.moveToSUIView(from: .fromBottom, type: .fade, AnyView( ContentView() ))
return true
}
func applicationWillTerminate(_ application: UIApplication) {
}
func applicationWillEnterForeground(_ application: UIApplication) {
}
func applicationDidEnterBackground(_ application: UIApplication) {
}
}