Save settings on shared preferences

This commit is contained in:
Juan Gilsanz Polo 2024-02-02 20:37:27 +01:00
parent 3eaf7143f2
commit 794b690c91
7 changed files with 242 additions and 465 deletions

View file

@ -9,6 +9,7 @@ import device_info_plus
import dynamic_color
import package_info_plus
import sentry_flutter
import shared_preferences_foundation
import sqflite
import sqlite3_flutter_libs
import url_launcher_macos
@ -19,6 +20,7 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
DynamicColorPlugin.register(with: registry.registrar(forPlugin: "DynamicColorPlugin"))
FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin"))
SentryFlutterPlugin.register(with: registry.registrar(forPlugin: "SentryFlutterPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
Sqlite3FlutterLibsPlugin.register(with: registry.registrar(forPlugin: "Sqlite3FlutterLibsPlugin"))
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))