Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

import UIKit

import Flutter

@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {

var launOption: [UIApplication.LaunchOptionsKey: Any]?

override func application(


_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions:
[UIApplication.LaunchOptionsKey: Any]?
) -> Bool {

self.launOption = launchOptions

let vc = UIStoryboard.init(name: "Main", bundle:


Bundle.main).instantiateViewController(withIdentifier: "splash")

self.window?.rootViewController = vc
self.window?.makeKeyAndVisible()

GeneratedPluginRegistrant.register(with: self)

return true // Assuming no other errors


}

static func sharedInstance() -> AppDelegate {


return UIApplication.shared.delegate as! AppDelegate
}
}

You might also like