Files
Ascently/ios/Ascently/AscentlyApp.swift
Atridad Lahiji a212f3f3b5
All checks were successful
Ascently - Docs Deploy / build-and-push (pull_request) Successful in 8m4s
2.3.0 - Unified logging and app intents
2025-11-20 21:00:00 -07:00

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()
}
}
}