1 Commits

Author SHA1 Message Date
25030248hasel
9fdb51f622 version 2.1 2026-05-23 03:52:03 -06:00
2 changed files with 160 additions and 171 deletions

View File

@@ -1,6 +1,5 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:go_router/go_router.dart';
import '../../../../core/theme/app_theme.dart'; import '../../../../core/theme/app_theme.dart';
import '../bloc/auth_bloc.dart'; import '../bloc/auth_bloc.dart';
@@ -8,15 +7,6 @@ import '../bloc/auth_event.dart';
import '../bloc/auth_state.dart'; import '../bloc/auth_state.dart';
import '../widgets/privacy_notice_card.dart'; import '../widgets/privacy_notice_card.dart';
/// Pantalla de inicio de sesión — MVP WasteNotify.
///
/// Diseño: Limpio, institucional, con paleta verde-tierra.
/// Incluye mensajería preventiva integrada de forma no intrusiva.
///
/// Credenciales de demo:
/// Ciudadano: ciudadano@ejemplo.com / password123
/// Operador: operador@ejemplo.com / operador456
/// Teléfono: 5551234567 / pass1234
class LoginScreen extends StatefulWidget { class LoginScreen extends StatefulWidget {
const LoginScreen({super.key}); const LoginScreen({super.key});
@@ -24,8 +14,7 @@ class LoginScreen extends StatefulWidget {
State<LoginScreen> createState() => _LoginScreenState(); State<LoginScreen> createState() => _LoginScreenState();
} }
class _LoginScreenState extends State<LoginScreen> class _LoginScreenState extends State<LoginScreen> with SingleTickerProviderStateMixin {
with SingleTickerProviderStateMixin {
final _formKey = GlobalKey<FormState>(); final _formKey = GlobalKey<FormState>();
final _identifierController = TextEditingController(); final _identifierController = TextEditingController();
final _passwordController = TextEditingController(); final _passwordController = TextEditingController();
@@ -97,6 +86,8 @@ class _LoginScreenState extends State<LoginScreen>
child: Scaffold( child: Scaffold(
backgroundColor: AppTheme.warmWhite, backgroundColor: AppTheme.warmWhite,
body: SafeArea( body: SafeArea(
child: Form(
key: _formKey,
child: CustomScrollView( child: CustomScrollView(
slivers: [ slivers: [
SliverFillRemaining( SliverFillRemaining(
@@ -108,34 +99,25 @@ class _LoginScreenState extends State<LoginScreen>
child: Padding( child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 28), padding: const EdgeInsets.symmetric(horizontal: 28),
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.stretch,
children: [ children: [
const SizedBox(height: 48), const SizedBox(height: 48),
_buildHeader(), _buildHeader(),
const SizedBox(height: 32), const SizedBox(height: 8),
const ScheduleWarningBanner(),
const SizedBox(height: 32),
_buildForm(context),
const SizedBox(height: 24),
const PrivacyNoticeCard(),
const SizedBox(height: 32),
_buildDemoHint(),
const SizedBox(height: 24),
],
),
),
), const SizedBox(height: 8),
Text( Text(
'Sistema Municipal de Recolección Residencial\nCelaya, Guanajuato', 'Sistema Municipal de Recolección Residencial\nCelaya, Guanajuato',
textAlign: TextAlign.center, textAlign: TextAlign.center,
style: TextStyle( style: TextStyle(
fontSize: 12, color: Colors.grey.shade600, height: 1.3), fontSize: 12, color: Colors.grey.shade600, height: 1.3),
), ),
const SizedBox(height: 48), const SizedBox(height: 32),
// Asegúrate de que este widget esté definido en tu proyecto o cámbialo por un placeholder
// const ScheduleWarningBanner(),
const SizedBox(height: 32),
// --- CAMPO: EMAIL / IDENTIFICADOR --- // --- CAMPO: EMAIL / IDENTIFICADOR ---
TextFormField( TextFormField(
controller: _emailController, controller: _identifierController,
keyboardType: TextInputType.emailAddress, keyboardType: TextInputType.emailAddress,
decoration: const InputDecoration( decoration: const InputDecoration(
labelText: 'Correo Electrónico o Teléfono', labelText: 'Correo Electrónico o Teléfono',
@@ -150,14 +132,18 @@ class _LoginScreenState extends State<LoginScreen>
), ),
const SizedBox(height: 20), const SizedBox(height: 20),
// --- CAMPO: CONTRASENA --- // --- CAMPO: CONTRASEÑA ---
TextFormField( TextFormField(
controller: _passwordController, controller: _passwordController,
obscureText: true, obscureText: _obscurePassword,
decoration: const InputDecoration( decoration: InputDecoration(
labelText: 'Contraseña de Acceso', labelText: 'Contraseña de Acceso',
prefixIcon: Icon(Icons.lock_outline_rounded), prefixIcon: const Icon(Icons.lock_outline_rounded),
border: OutlineInputBorder( suffixIcon: IconButton(
icon: Icon(_obscurePassword ? Icons.visibility_off : Icons.visibility),
onPressed: () => setState(() => _obscurePassword = !_obscurePassword),
),
border: const OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(12))), borderRadius: BorderRadius.all(Radius.circular(12))),
), ),
validator: (value) => (value == null || value.isEmpty) validator: (value) => (value == null || value.isEmpty)
@@ -166,17 +152,12 @@ class _LoginScreenState extends State<LoginScreen>
), ),
const SizedBox(height: 32), const SizedBox(height: 32),
// --- CONTENEDOR REACTIVO DE BOTONES (LOGIN & REGISTER) --- // --- CONTENEDOR REACTIVO DE BOTONES ---
// --- CONTENEDOR REACTIVO DE BOTONES (LOGIN & REGISTER) ---
BlocBuilder<AuthBloc, AuthState>( BlocBuilder<AuthBloc, AuthState>(
builder: (context, state) { builder: (context, state) {
final isLoading = state is AuthLoading; final isLoading = state is AuthLoading;
return Column( return AnimatedContainer(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
AnimatedContainer(
duration: const Duration(milliseconds: 200), duration: const Duration(milliseconds: 200),
decoration: BoxDecoration( decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12), borderRadius: BorderRadius.circular(12),
@@ -184,80 +165,48 @@ class _LoginScreenState extends State<LoginScreen>
? [] ? []
: [ : [
BoxShadow( BoxShadow(
color: AppTheme.leafGreen color: AppTheme.leafGreen.withOpacity(0.3),
.withOpacity(0.3),
blurRadius: 16, blurRadius: 16,
offset: const Offset(0, 6), offset: const Offset(0, 6),
), ),
], ],
), ),
child: ElevatedButton( child: ElevatedButton(
onPressed: onPressed: isLoading ? null : () => _submit(context),
isLoading ? null : () => _submit(context),
style: ElevatedButton.styleFrom( style: ElevatedButton.styleFrom(
backgroundColor: isLoading backgroundColor: isLoading
? AppTheme.mintGreen.withOpacity(0.7) ? AppTheme.mintGreen.withOpacity(0.7)
: AppTheme.leafGreen, : AppTheme.leafGreen,
disabledBackgroundColor: disabledBackgroundColor: AppTheme.mintGreen.withOpacity(0.6),
AppTheme.mintGreen.withOpacity(0.6), padding: const EdgeInsets.symmetric(vertical: 16),
padding:
const EdgeInsets.symmetric(vertical: 16),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12)),
), ),
child: isLoading child: isLoading
? const SizedBox( ? const CircularProgressIndicator(color: Colors.white)
height: 22, : const Text('Iniciar Sesión', style: TextStyle(color: Colors.white)),
width: 22, ),
child: CircularProgressIndicator( );
strokeWidth: 2.5, },
valueColor: AlwaysStoppedAnimation( ),
Colors.white), const SizedBox(height: 24),
const PrivacyNoticeCard(),
const SizedBox(height: 32),
_buildDemoHint(),
const SizedBox(height: 24),
],
),
),
),
), ),
)
: const Row(
mainAxisAlignment:
MainAxisAlignment.center,
children: [
Icon(Icons.login_rounded,
size: 20, color: Colors.white),
SizedBox(width: 10),
Text(
'Ingresar de forma segura',
style: TextStyle(
color: Colors.white,
fontSize: 15,
fontWeight: FontWeight.bold),
), ),
], ],
), ),
), ),
), ),
),
);
}
// 📍 ENLACE DE REDIRECCIÓN AL REGISTRO CIUDADANO // Métodos auxiliares creados como placeholders para evitar errores de compilación
const SizedBox(height: 20), Widget _buildHeader() => const Center(child: Text("WasteNotify", style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold)));
TextButton( Widget _buildDemoHint() => const Center(child: Text("Demo: ciudadano@ejemplo.com / password123", style: TextStyle(fontSize: 12)));
onPressed: () { }
// 🚀 Forzamos la navegación limpia usando la ruta de texto directo
context.push('/register');
},
child: const Text(
'¿No tienes una cuenta ciudadana? Regístrate aquí',
style: TextStyle(
color: AppTheme.leafGreen,
fontWeight: FontWeight.w700,
fontSize: 13,
),
),
)
]);
},
),
], // Fin children de la Column
), // Fin Column
), // Fin Form
), // Fin SingleChildScrollView
), // Fin SafeArea
), // Fin BlocListener
); // Fin Scaffold (Asegúrate de que tenga el punto y coma aquí)

View File

@@ -65,6 +65,14 @@ packages:
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "1.0.8" version: "1.0.8"
dbus:
dependency: transitive
description:
name: dbus
sha256: d0c98dcd4f5169878b6cf8f6e0a52403a9dff371a3e2f019697accbf6f44a270
url: "https://pub.dev"
source: hosted
version: "0.7.12"
equatable: equatable:
dependency: "direct main" dependency: "direct main"
description: description:
@@ -176,6 +184,38 @@ packages:
url: "https://pub.dev" url: "https://pub.dev"
source: hosted source: hosted
version: "13.2.5" version: "13.2.5"
http:
dependency: transitive
description:
name: http
sha256: "87721a4a50b19c7f1d49001e51409bddc46303966ce89a65af4f4e6004896412"
url: "https://pub.dev"
source: hosted
version: "1.6.0"
http_parser:
dependency: transitive
description:
name: http_parser
sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571"
url: "https://pub.dev"
source: hosted
version: "4.1.2"
intl:
dependency: transitive
description:
name: intl
sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
url: "https://pub.dev"
source: hosted
version: "0.20.2"
latlong2:
dependency: "direct main"
description:
name: latlong2
sha256: "98227922caf49e6056f91b6c56945ea1c7b166f28ffcd5fb8e72fc0b453cc8fe"
url: "https://pub.dev"
source: hosted
version: "0.9.1"
leak_tracker: leak_tracker:
dependency: transitive dependency: transitive
description: description: