1
0
Fork 0
This commit is contained in:
Florian RICHER (MrDev023) 2022-03-30 21:37:32 +02:00
commit 1ba7bd9153
96 changed files with 2985 additions and 0 deletions

View file

@ -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)
}
}