fix: hover navbar, soporte sin spinner, RETHUS en formulario profesional
- Navbar: hoverColor tenue por tema (azul/blanco) en vez del gris por defecto de Flutter web - SettingsProvider: lazy:false + timeout 10s para evitar spinner gris permanente en soporte - SupportView: muestra contenido con defaults inmediatamente sin bloquear en isLoading - Modelo Profesional: campos rethus_code y rethus_validated - ProfessionalFormProvider: soporte para rethus_code en copyProfesionalWith - RequestProfessionalView: campo RETHUS opcional en formulario + fix color dropdown profesión Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Sonnet 4.6
parent
efbdaf2dbe
commit
7434bc8644
@@ -13,7 +13,7 @@ class SettingsProvider extends ChangeNotifier {
|
||||
|
||||
getSettings() async {
|
||||
try {
|
||||
final data = await _api.get('/settings');
|
||||
final data = await _api.get('/settings').timeout(const Duration(seconds: 10));
|
||||
if (data != null) {
|
||||
settings = Setting.fromDocument(data as Map<String, dynamic>);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user