summaryrefslogtreecommitdiff
path: root/ios/Runner/AppDelegate.swift
diff options
context:
space:
mode:
authorMica White <botahamec@outlook.com>2025-12-08 20:12:09 -0500
committerMica White <botahamec@outlook.com>2025-12-08 20:12:09 -0500
commit7c8b5676fecffe5468810b703c579acb6a5fd256 (patch)
tree0c4ff107dfd012a4d03500f41f3607aff1d52616 /ios/Runner/AppDelegate.swift
First commit
Diffstat (limited to 'ios/Runner/AppDelegate.swift')
-rwxr-xr-xios/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 100755
index 0000000..8be1cec
--- /dev/null
+++ b/ios/Runner/AppDelegate.swift
@@ -0,0 +1,13 @@
+import Flutter
+import UIKit
+
+@main
+@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)
+ }
+}