step 2 : add pubdev package

This commit is contained in:
sindhu
2025-02-20 22:18:41 +07:00
parent 6bad4b4e84
commit a1d459452e
7 changed files with 538 additions and 1 deletions

View File

@@ -5,6 +5,14 @@
import FlutterMacOS
import Foundation
import audioplayers_darwin
import path_provider_foundation
import record_darwin
import shared_preferences_foundation
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
AudioplayersDarwinPlugin.register(with: registry.registrar(forPlugin: "AudioplayersDarwinPlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
RecordPlugin.register(with: registry.registrar(forPlugin: "RecordPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
}