• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 import UIKit
2 import Flutter
3 
4 @UIApplicationMain
5 @objc class AppDelegate: FlutterAppDelegate {
6   override func application(
7     _ application: UIApplication,
8     didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
9   ) -> Bool {
10     GeneratedPluginRegistrant.register(with: self)
11     return super.application(application, didFinishLaunchingWithOptions: launchOptions)
12   }
13 }
14