Adds drone model, db helper.

This commit is contained in:
2025-07-04 17:19:46 +02:00
parent 0266bf924b
commit fb6a20fd75
13 changed files with 1039 additions and 3 deletions

View File

@ -5,6 +5,12 @@
import FlutterMacOS
import Foundation
import path_provider_foundation
import sqflite_darwin
import sqlite3_flutter_libs
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
Sqlite3FlutterLibsPlugin.register(with: registry.registrar(forPlugin: "Sqlite3FlutterLibsPlugin"))
}