Files
flutter_opencode_client/ios/Runner/AppDelegate.swift
lollipopkit 9e6f386b28 #77 opt.
2023-07-21 16:57:17 +08:00

18 lines
534 B
Swift

import UIKit
import WidgetKit
import Flutter
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
if #available(iOS 14.0, *) {
WidgetCenter.shared.reloadTimelines(ofKind: "StatusWidget")
}
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}