feat: integrate speech-to-text functionality into chat screen with cross-platform permission configuration

This commit is contained in:
pradeepkumar
2026-04-08 20:21:29 +05:30
parent 8474d41002
commit ca81a73e49
8 changed files with 149 additions and 6 deletions

View File

@@ -16,6 +16,7 @@ import google_sign_in_ios
import package_info_plus
import path_provider_foundation
import shared_preferences_foundation
import speech_to_text
import sqflite_darwin
import url_launcher_macos
import webview_flutter_wkwebview
@@ -32,6 +33,7 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
SpeechToTextPlugin.register(with: registry.registrar(forPlugin: "SpeechToTextPlugin"))
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
WebViewFlutterPlugin.register(with: registry.registrar(forPlugin: "WebViewFlutterPlugin"))