fix: auth pages visibles en modo oscuro y claro

- AuthLayout desktop: fondo usa scaffoldBackgroundColor en vez de Colors.white fijo
- PhoneLoginView y LoginView: todos los textos, inputs y bordes usan colores tema-aware
  (titulos, subtítulos, fillColor, borderColor se adaptan a modo día/noche)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Lizandro Guarnizo
2026-06-27 18:33:21 -05:00
co-authored by Claude Sonnet 4.6
parent 7434bc8644
commit 35599276ed
3 changed files with 88 additions and 59 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ class _DesktopBody extends StatelessWidget {
Expanded(
child: Container(
height: height,
color: Colors.white,
color: Theme.of(context).scaffoldBackgroundColor,
child: Center(child: child),
),
),