import 'package:flutter/material.dart'; import 'package:flutter_spinkit/flutter_spinkit.dart'; import 'screens/improved_home_screen.dart'; import 'register.dart'; import 'services/auth_service.dart'; class LoginScreen extends StatefulWidget { const LoginScreen({super.key}); @override State createState() => _LoginScreenState(); } class _LoginScreenState extends State { final _formKey = GlobalKey(); final _emailController = TextEditingController(); final _passwordController = TextEditingController(); final _authService = AuthService(); bool _obscurePassword = true; bool _isLoading = false; @override void dispose() { _emailController.dispose(); _passwordController.dispose(); super.dispose(); } @override Widget build(BuildContext context) { return Scaffold( backgroundColor: Colors.white, body: Column( children: [ // Header Container( width: double.infinity, padding: const EdgeInsets.fromLTRB(8, 0, 16, 24), decoration: const BoxDecoration( gradient: LinearGradient( begin: Alignment.topLeft, end: Alignment.bottomRight, colors: [Color(0xFF1565C0), Color(0xFF0D47A1)], ), borderRadius: BorderRadius.only( bottomLeft: Radius.circular(28), bottomRight: Radius.circular(28), ), ), child: SafeArea( bottom: false, child: Column( children: [ const SizedBox(height: 20), Container( padding: const EdgeInsets.all(18), decoration: BoxDecoration( color: Colors.white, shape: BoxShape.circle, boxShadow: [ BoxShadow( color: Colors.black.withOpacity(0.1), blurRadius: 20, offset: const Offset(0, 6), ), ], ), child: const Icon( Icons.person_rounded, color: Color(0xFF1565C0), size: 36, ), ), const SizedBox(height: 16), const Text( 'Selamat Datang', style: TextStyle( fontSize: 22, fontWeight: FontWeight.w700, color: Colors.white, letterSpacing: 0.3, ), ), const SizedBox(height: 4), Text( 'Masuk ke akun Anda untuk melanjutkan', style: TextStyle( fontSize: 13, color: Colors.white.withOpacity(0.8), ), ), ], ), ), ), // Main Content Expanded( child: SingleChildScrollView( padding: const EdgeInsets.fromLTRB(24, 28, 24, 24), child: Form( key: _formKey, child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ // Email Field _buildTextField( label: 'Email', controller: _emailController, keyboardType: TextInputType.emailAddress, prefixIcon: Icons.email_outlined, ), const SizedBox(height: 18), // Password Field _buildTextField( label: 'Password', controller: _passwordController, obscureText: _obscurePassword, prefixIcon: Icons.lock_outline, suffixIcon: IconButton( icon: Icon( _obscurePassword ? Icons.visibility_outlined : Icons.visibility_off_outlined, color: const Color(0xFF1565C0), ), onPressed: () { setState(() { _obscurePassword = !_obscurePassword; }); }, ), ), const SizedBox(height: 28), // Login Button SizedBox( width: double.infinity, child: _buildActionButton( label: 'MASUK', onPressed: _isLoading ? null : _handleLogin, ), ), const SizedBox(height: 24), // Info Aplikasi untuk Mahasiswa Polije _buildInfoCard(), const SizedBox(height: 20), // Register Link Row( mainAxisAlignment: MainAxisAlignment.center, children: [ Text( 'Belum punya akun? ', style: TextStyle( fontSize: 14, color: Colors.grey[600], ), ), GestureDetector( onTap: () { Navigator.push( context, MaterialPageRoute( builder: (context) => const RegisterScreen(), ), ); }, child: const Text( 'Daftar Sekarang', style: TextStyle( fontSize: 14, fontWeight: FontWeight.w700, color: Color(0xFF1565C0), ), ), ), ], ), const SizedBox(height: 20), ], ), ), ), ), ], ), ); } Future _handleLogin() async { print('=== LOGIN BUTTON CLICKED ==='); print('FormKey currentState: ${_formKey.currentState}'); if (_formKey.currentState == null) { print('ERROR: FormKey currentState is null!'); ScaffoldMessenger.of(context).showSnackBar( const SnackBar(content: Text('Error: Form not initialized')), ); return; } if (!_formKey.currentState!.validate()) { print('Form validation failed'); return; } print('Form validated, attempting login...'); print('Email: ${_emailController.text.trim()}'); setState(() => _isLoading = true); final result = await _authService.login( email: _emailController.text.trim(), password: _passwordController.text, ); print('Login result: $result'); setState(() => _isLoading = false); if (!mounted) return; if (result['success']) { print('Login successful, navigating to home...'); Navigator.pushReplacement( context, MaterialPageRoute(builder: (context) => const ImprovedHomeScreen()), ); } else { print('Login failed: ${result['message']}'); ScaffoldMessenger.of(context).showSnackBar( SnackBar( content: Text(result['message'] ?? 'Login gagal'), backgroundColor: Colors.red, ), ); } } Widget _buildTextField({ required String label, required TextEditingController controller, TextInputType? keyboardType, bool obscureText = false, IconData? prefixIcon, Widget? suffixIcon, }) { return Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( label, style: const TextStyle( fontSize: 14, fontWeight: FontWeight.w600, color: Color(0xFF1A1A2E), ), ), const SizedBox(height: 8), TextFormField( controller: controller, keyboardType: keyboardType, obscureText: obscureText, validator: (value) { if (value == null || value.isEmpty) { return 'Field ini tidak boleh kosong'; } if (keyboardType == TextInputType.emailAddress) { if (!value.contains('@')) { return 'Email tidak valid'; } } return null; }, decoration: InputDecoration( prefixIcon: prefixIcon != null ? Icon(prefixIcon, color: const Color(0xFF1565C0), size: 20) : null, suffixIcon: suffixIcon, filled: true, fillColor: const Color(0xFFF7F8FC), border: OutlineInputBorder( borderRadius: BorderRadius.circular(14), borderSide: const BorderSide(color: Color(0xFFE0E0E0)), ), enabledBorder: OutlineInputBorder( borderRadius: BorderRadius.circular(14), borderSide: const BorderSide(color: Color(0xFFE0E0E0)), ), focusedBorder: OutlineInputBorder( borderRadius: BorderRadius.circular(14), borderSide: const BorderSide(color: Color(0xFF1565C0), width: 1.5), ), errorBorder: OutlineInputBorder( borderRadius: BorderRadius.circular(14), borderSide: const BorderSide(color: Color(0xFFEF5350)), ), contentPadding: const EdgeInsets.symmetric( horizontal: 16, vertical: 15, ), ), ), ], ); } Widget _buildInfoCard() { return Container( padding: const EdgeInsets.all(18), decoration: BoxDecoration( color: const Color(0xFFF7F8FC), borderRadius: BorderRadius.circular(16), border: Border.all( color: const Color(0xFFE0E0E0), ), ), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Row( children: [ Container( padding: const EdgeInsets.all(10), decoration: BoxDecoration( color: const Color(0xFF1565C0).withOpacity(0.08), borderRadius: BorderRadius.circular(12), ), child: const Icon(Icons.school_rounded, color: Color(0xFF1565C0), size: 22), ), const SizedBox(width: 12), const Expanded( child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( 'Untuk Mahasiswa', style: TextStyle( fontSize: 15, fontWeight: FontWeight.w700, color: Color(0xFF1A1A2E), ), ), Text( 'Politeknik Negeri Jember', style: TextStyle( fontSize: 13, fontWeight: FontWeight.w500, color: Color(0xFF1565C0), ), ), ], ), ), ], ), const SizedBox(height: 16), _buildInfoItem( Icons.home_rounded, 'Temukan Kontrakan Terbaik', 'Rekomendasi kontrakan terdekat dari kampus', ), const SizedBox(height: 10), _buildInfoItem( Icons.local_laundry_service_rounded, 'Cari Laundry Terpercaya', 'Temukan laundry dengan kualitas terbaik', ), const SizedBox(height: 10), _buildInfoItem( Icons.analytics_rounded, 'Metode SAW', 'Rekomendasi berdasarkan preferensi Anda', ), ], ), ); } Widget _buildInfoItem(IconData icon, String title, String description) { return Row( crossAxisAlignment: CrossAxisAlignment.start, children: [ Icon(icon, color: const Color(0xFF1565C0).withOpacity(0.6), size: 18), const SizedBox(width: 10), Expanded( child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( title, style: const TextStyle( fontSize: 13, fontWeight: FontWeight.w600, color: Color(0xFF1A1A2E), ), ), const SizedBox(height: 2), Text( description, style: TextStyle( fontSize: 12, color: Colors.grey[500], height: 1.3, ), ), ], ), ), ], ); } Widget _buildActionButton({ required String label, required VoidCallback? onPressed, }) { return ElevatedButton( onPressed: onPressed, style: ElevatedButton.styleFrom( backgroundColor: const Color(0xFF1565C0), foregroundColor: Colors.white, padding: const EdgeInsets.symmetric(vertical: 16), shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(14)), elevation: 0, disabledBackgroundColor: Colors.grey[300], shadowColor: const Color(0xFF1565C0).withOpacity(0.3), ), child: _isLoading ? const SpinKitThreeBounce(color: Colors.white, size: 20) : Text( label, style: const TextStyle( fontSize: 16, fontWeight: FontWeight.w700, letterSpacing: 0.5, ), ), ); } }