reinialize LLC example

This commit is contained in:
Neevash Ramdial
2021-01-21 06:35:10 -04:00
parent b5feb31fd0
commit e27f3f8de1
59 changed files with 1013 additions and 0 deletions
@@ -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)
}
}