From f35758beb2719c64e513f684b366c3d0db1c0ec0 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Tue, 2 Jun 2020 15:26:52 +0530 Subject: Init commit with the boilerplate shit --- 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..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) + } +} -- cgit v1.3.1