mirror of
https://github.com/dstark5/Openlib.git
synced 2025-08-23 08:31:54 +08:00

* Added Share button with minimal functionality at this moment. * Feature: Add functionality to share book title with thumbnail - Download image from URL and save it to a temporary directory. - Share the book title along with the thumbnail using `Share.shareXFiles`. - Improved sharing experience by combining text and image in a single share intent.
14 lines
391 B
Swift
14 lines
391 B
Swift
import UIKit
|
|
import Flutter
|
|
|
|
@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)
|
|
}
|
|
}
|