From 08f2adb6397557ac27cf3780aa8f8222cbc51982 Mon Sep 17 00:00:00 2001 From: Orangerot Date: Mon, 16 Dec 2024 16:04:07 +0100 Subject: Initial Commit --- ios/Runner/AppDelegate.swift | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ios/Runner/AppDelegate.swift (limited to 'ios/Runner/AppDelegate.swift') diff --git a/ios/Runner/AppDelegate.swift b/ios/Runner/AppDelegate.swift new file mode 100644 index 0000000..6266644 --- /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) + } +} -- cgit v1.2.3