readability-dart/example/ios/Runner/AppDelegate.swift
Sphericalkat 1d52c7b78b
Initial commit
Signed-off-by: Sphericalkat <me@kat.bio>
2024-07-18 00:29:09 +05:30

14 lines
404 B
Swift

import Flutter
import UIKit
@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)
}
}