- Update SDK constraint to >=3.0.0 <4.0.0 (Flutter stable uses Dart 3.x)
- Remove flutter_email_sender (no web support) — replace with mailto: via url_launcher
- support.dart: unified _sendEmail works on both web and mobile
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
_statusIcon switch cases and tileColor checks were comparing against Spanish
status strings (aprobado/iniciado/terminado/denegado); backend returns English
(accepted/active/completed/cancelled/denied) so they always fell to default.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- solicitudes: GET /services/professional/requests (not query params)
- my_services: GET /services/me with paginated response handling
- my_services_pro: GET /services/professional with paginated response handling
- professional: handle paginated GET /professionals response
- cita: PATCH /services/:id/status (not /services/:id); translate all Spanish
status comparisons (pendiente/aprobado/iniciado/terminado) to backend English
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Replace Firebase Auth with JWT stored in SharedPreferences
- Replace Firestore with REST API calls via new ApiService
- Replace Firebase Storage with POST /storage/upload
- Remove firebase_auth, firebase_core, cloud_firestore,
firebase_storage, firebase_messaging, google_sign_in deps
- Add api_service.dart as central HTTP client
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>