feat: Initialize Flutter project with core dependencies, asset structure, and update to embedding v2.

This commit is contained in:
pradeepkumar
2026-02-22 21:48:04 +05:30
parent ac1917b640
commit 0f07a16132
24 changed files with 1863 additions and 20 deletions

View File

@@ -5,6 +5,12 @@
import FlutterMacOS
import Foundation
import flutter_secure_storage_macos
import shared_preferences_foundation
import sqflite_darwin
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
FlutterSecureStoragePlugin.register(with: registry.registrar(forPlugin: "FlutterSecureStoragePlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
}