summaryrefslogtreecommitdiff
path: root/ios/Runner/AppDelegate.swift
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2022-02-17 05:25:02 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2022-02-17 05:25:02 +0900
commitbf92a0bbfdee7be31cbbaa650af1fba15bb2d989 (patch)
tree452c10ea2a6e4afee9d36677a182ae1418b85022 /ios/Runner/AppDelegate.swift
initial commitHEADmaster
Diffstat (limited to 'ios/Runner/AppDelegate.swift')
-rw-r--r--ios/Runner/AppDelegate.swift13
1 files changed, 13 insertions, 0 deletions
diff --git a/ios/Runner/AppDelegate.swift b/ios/Runner/AppDelegate.swift
new file mode 100644
index 0000000..70693e4
--- /dev/null
+++ b/ios/Runner/AppDelegate.swift
@@ -0,0 +1,13 @@
+import UIKit
+import Flutter
+
+@UIApplicationMain
+@objc class AppDelegate: FlutterAppDelegate {
+ override func application(
+ _ application: UIApplication,
+ didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
+ ) -> Bool {
+ GeneratedPluginRegistrant.register(with: self)
+ return super.application(application, didFinishLaunchingWithOptions: launchOptions)
+ }
+}