- 新增数据库相关代码,包括数据库帮助类和操作函数 - 重构添加物品页面,增加表单验证和数据提交逻辑 - 新增物品列表页面,实现数据加载和展示功能 - 更新项目配置,添加必要的依赖库
17 lines
498 B
Swift
17 lines
498 B
Swift
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
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"))
|
|
}
|