feat: added map merge with supabase structure

This commit is contained in:
Alan Alonso
2026-05-23 02:19:54 -06:00
parent 8733aaf91f
commit 475cf60d61
821 changed files with 279897 additions and 1933 deletions

View File

@@ -5,6 +5,14 @@
import FlutterMacOS
import Foundation
import app_links
import geolocator_apple
import shared_preferences_foundation
import url_launcher_macos
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
AppLinksMacosPlugin.register(with: registry.registrar(forPlugin: "AppLinksMacosPlugin"))
GeolocatorPlugin.register(with: registry.registrar(forPlugin: "GeolocatorPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
}