All checks were successful
Ascently - Docs Deploy / build-and-push (pull_request) Successful in 8m4s
23 lines
520 B
Swift
23 lines
520 B
Swift
import SwiftUI
|
|
|
|
class AppDelegate: NSObject, UIApplicationDelegate {
|
|
func application(
|
|
_ application: UIApplication,
|
|
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil
|
|
) -> Bool {
|
|
return true
|
|
}
|
|
}
|
|
|
|
@main
|
|
struct AscentlyApp: App {
|
|
@UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
|
|
@Environment(\.scenePhase) private var scenePhase
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|