diff options
| author | Mica White <botahamec@outlook.com> | 2026-02-08 10:10:24 -0500 |
|---|---|---|
| committer | Mica White <botahamec@outlook.com> | 2026-02-08 10:10:24 -0500 |
| commit | 1716cf45d0e4e41c7833105dab10542f5ed5dcf1 (patch) | |
| tree | 99ae387cfb3b96c30bbe3fd4cd619dc291505f68 /ios/Runner/AppDelegate.swift | |
Diffstat (limited to 'ios/Runner/AppDelegate.swift')
| -rw-r--r-- | ios/Runner/AppDelegate.swift | 13 |
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..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)
+ }
+}
|
