fix:编译iOS和web目录

This commit is contained in:
jingyun
2026-06-03 10:17:39 +08:00
parent 4a632ba60f
commit a76ea8dd07
39 changed files with 1116 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import Flutter
import UIKit
@main
@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)
}
}