Files
android
assets
ios
Flutter
Runner
Assets.xcassets
Base.lproj
NativeViews
AppDelegate.swift
Info.plist
Runner-Bridging-Header.h
Runner.entitlements
Runner.xcodeproj
Runner.xcworkspace
RunnerTests
.gitignore
Podfile
Podfile.lock
lib
linux
macos
web
windows
.gitignore
.metadata
README.md
analysis_options.yaml
build.yaml
devtools_options.yaml
pubspec.lock
pubspec.yaml
App/ios/Runner/AppDelegate.swift
2025-04-23 00:07:20 +08:00

14 lines
421 B
Swift

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