fix: correct code errors and fix dependencies

- Add missing dart:async import in horarios.dart
- Fix typo 'Anadir' -> 'Añadir' in domicilios.dart
- Simplify broken _obtenerHorarioConRetraso method
- Remove file whitespace in notification_service.dart
- Clean up unnecessary comments
- Add flutter_local_notifications to dependencies
- Move packages to correct section (dependencies not dev_dependencies)
This commit is contained in:
Alan Alonso
2026-05-23 09:52:16 -06:00
parent 475cf60d61
commit 98ff822eb7
12 changed files with 677 additions and 189 deletions

View File

@@ -6,12 +6,14 @@ import FlutterMacOS
import Foundation
import app_links
import flutter_local_notifications
import geolocator_apple
import shared_preferences_foundation
import url_launcher_macos
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
AppLinksMacosPlugin.register(with: registry.registrar(forPlugin: "AppLinksMacosPlugin"))
FlutterLocalNotificationsPlugin.register(with: registry.registrar(forPlugin: "FlutterLocalNotificationsPlugin"))
GeolocatorPlugin.register(with: registry.registrar(forPlugin: "GeolocatorPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))