- Add share button to formula list with export functionality - Implement proper escaping of special characters (\n, \t, \", etc.) in FormulaElement.toStringLiteral methods - Create escapeD4rtString helper function for consistent escaping - Update Formula, UnitSpec, and VariableSpec toStringLiteral methods to use escaping - Add share_plus package dependency for sharing functionality Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
16 lines
500 B
Swift
16 lines
500 B
Swift
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
import FlutterMacOS
|
|
import Foundation
|
|
|
|
import share_plus
|
|
import sqlite3_flutter_libs
|
|
import url_launcher_macos
|
|
|
|
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
|
|
SharePlusMacosPlugin.register(with: registry.registrar(forPlugin: "SharePlusMacosPlugin"))
|
|
Sqlite3FlutterLibsPlugin.register(with: registry.registrar(forPlugin: "Sqlite3FlutterLibsPlugin"))
|
|
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
|
|
}
|