Files
Openlib/macos/Flutter/GeneratedPluginRegistrant.swift
Anshul Saxena 18723e1d78 Added book title and thumbnail sharing feature with image download and preview support (#126)
* 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.
2024-10-25 18:25:02 +05:30

25 lines
959 B
Swift

//
// Generated file. Do not edit.
//
import FlutterMacOS
import Foundation
import device_info_plus
import flutter_inappwebview_macos
import open_file_mac
import path_provider_foundation
import share_plus
import sqflite_darwin
import url_launcher_macos
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
DeviceInfoPlusMacosPlugin.register(with: registry.registrar(forPlugin: "DeviceInfoPlusMacosPlugin"))
InAppWebViewFlutterPlugin.register(with: registry.registrar(forPlugin: "InAppWebViewFlutterPlugin"))
OpenFilePlugin.register(with: registry.registrar(forPlugin: "OpenFilePlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
SharePlusMacosPlugin.register(with: registry.registrar(forPlugin: "SharePlusMacosPlugin"))
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
}