add: flutter scaffolding, outlines for WebRTC conn

This commit is contained in:
Charles Hathaway
2023-09-17 15:45:28 -07:00
commit 6d4eef18cc
129 changed files with 5093 additions and 0 deletions
+13
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)
}
}