mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-11 19:11:00 +00:00
24 lines
783 B
Swift
24 lines
783 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import SwiftUI
|
|
import ViewModels
|
|
|
|
@main
|
|
struct MetatextApp: App {
|
|
// swiftlint:disable weak_delegate
|
|
@UIApplicationDelegateAdaptor(AppDelegate.self) private var appDelegate
|
|
// swiftlint:enable weak_delegate
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
RootView(
|
|
// swiftlint:disable force_try
|
|
viewModel: try! RootViewModel(
|
|
environment: .live(
|
|
userNotificationCenter: .current(),
|
|
reduceMotion: { UIAccessibility.isReduceMotionEnabled }),
|
|
registerForRemoteNotifications: appDelegate.registerForRemoteNotifications))
|
|
// swiftlint:enable force_try
|
|
}
|
|
}
|
|
}
|