1
0
mirror of https://github.com/go-vikunja/app synced 2024-06-05 03:59:48 +00:00
app-mirror-github/ios/Runner/AppDelegate.swift

14 lines
403 B
Swift
Raw Normal View History

2018-09-14 16:59:13 +00:00
import UIKit
import Flutter
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}