Files
Tekeshwar Singh 24955aeac5 view_pdf_file example added (#57)
* view_pdf_file example added

* made revelent changes

changed package, example of both load pdf from asset and url, added link from example in readme

* added example view_pdf_file

* Added View PDF File example

* minor changes
2020-10-06 10:30:19 +02:00

14 lines
404 B
Swift

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