login implementado

This commit is contained in:
Abraham
2025-07-15 23:02:46 -07:00
parent 07395137a5
commit 14775dc90d
2 changed files with 802 additions and 303 deletions

View File

@@ -15,8 +15,51 @@ class LoginPage extends StatefulWidget {
State<LoginPage> createState() => _LoginPageState();
}
class _LoginPageState extends State<LoginPage> {
class _LoginPageState extends State<LoginPage> with TickerProviderStateMixin {
final scaffoldKey = GlobalKey<ScaffoldState>();
late AnimationController _fadeController;
late AnimationController _slideController;
late Animation<double> _fadeAnimation;
late Animation<Offset> _slideAnimation;
@override
void initState() {
super.initState();
_fadeController = AnimationController(
duration: const Duration(milliseconds: 1500),
vsync: this,
);
_slideController = AnimationController(
duration: const Duration(milliseconds: 1200),
vsync: this,
);
_fadeAnimation = Tween<double>(
begin: 0.0,
end: 1.0,
).animate(CurvedAnimation(
parent: _fadeController,
curve: Curves.easeInOut,
));
_slideAnimation = Tween<Offset>(
begin: const Offset(-0.3, 0),
end: Offset.zero,
).animate(CurvedAnimation(
parent: _slideController,
curve: Curves.elasticOut,
));
_fadeController.forward();
_slideController.forward();
}
@override
void dispose() {
_fadeController.dispose();
_slideController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
@@ -27,156 +70,328 @@ class _LoginPageState extends State<LoginPage> {
child: LayoutBuilder(
builder: (context, constraints) {
if (constraints.maxWidth < 768) {
// Vista móvil - fondo degradado completo
// Vista móvil - fondo degradado completo con mejoras
return Container(
width: double.infinity,
height: double.infinity,
decoration: const BoxDecoration(
gradient: LinearGradient(
begin: Alignment.centerLeft,
end: Alignment.centerRight,
begin: Alignment.topLeft,
end: Alignment.bottomRight,
colors: [
Color(0xFF22C55E), // Verde izquierda
Color(0xFF3B82F6), // Azul centro
Color(0xFF8B5CF6), // Morado derecha
Color(
0xFF0F172A), // Azul muy oscuro (más oscuro para móvil)
Color(0xFF1E293B), // Azul oscuro
Color(0xFF075985), // Azul medio oscuro
Color(0xFF059669), // Verde más oscuro
],
stops: [0.0, 0.3, 0.7, 1.0],
),
),
child: Stack(
children: [
// Efectos de partículas/círculos flotantes (más sutiles en móvil)
...List.generate(
4, (index) => _buildFloatingCircle(index, constraints)),
// Overlay oscuro con blur para mejor legibilidad
Container(
width: double.infinity,
height: double.infinity,
decoration: BoxDecoration(
color: Colors.black.withOpacity(0.3),
),
),
SafeArea(
child: SingleChildScrollView(
physics: const BouncingScrollPhysics(),
child: Container(
width: double.infinity,
constraints: BoxConstraints(
minHeight: MediaQuery.of(context).size.height,
minHeight: MediaQuery.of(context).size.height -
MediaQuery.of(context).padding.top -
MediaQuery.of(context).padding.bottom,
),
padding: const EdgeInsets.symmetric(
horizontal: 24, // Padding simétrico
vertical: 20,
),
padding: const EdgeInsets.all(20),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment
.center, // Centrado horizontal
children: [
// Logo NetHive para móvil
Container(
margin: const EdgeInsets.only(bottom: 30),
FadeTransition(
opacity: _fadeAnimation,
child: Container(
margin: const EdgeInsets.only(bottom: 40),
child: Column(
children: [
Container(
width: 80,
height: 80,
width: 100,
height: 100,
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(16),
borderRadius:
BorderRadius.circular(20),
boxShadow: [
BoxShadow(
color:
Colors.black.withOpacity(0.3),
blurRadius: 30,
offset: const Offset(0, 15),
),
BoxShadow(
color:
Colors.white.withOpacity(0.1),
blurRadius: 20,
offset: const Offset(0, -5),
),
],
),
child: Padding(
padding: const EdgeInsets.all(16),
padding: const EdgeInsets.all(20),
child: Image.asset(
'assets/images/favicon.png',
fit: BoxFit.contain,
),
),
),
const SizedBox(height: 16),
const SizedBox(height: 24),
const Text(
'NetHive',
style: TextStyle(
fontSize: 32,
fontSize: 38,
fontWeight: FontWeight.bold,
color: Colors.white,
shadows: [
Shadow(
offset: Offset(0, 3),
blurRadius: 15,
color: Colors.black38,
),
],
),
textAlign: TextAlign.center,
),
const SizedBox(height: 8),
const Text(
'Infrastructure Management',
style: TextStyle(
fontSize: 16,
color: Colors.white70,
fontWeight: FontWeight.w300,
letterSpacing: 0.8,
),
textAlign: TextAlign.center,
),
],
),
),
const LoginForm(),
),
// Formulario con contenedor para mejor contraste
SlideTransition(
position: _slideAnimation,
child: Container(
width: double.infinity,
constraints:
const BoxConstraints(maxWidth: 400),
padding: const EdgeInsets.all(24),
decoration: BoxDecoration(
color: Colors.black.withOpacity(0.2),
borderRadius: BorderRadius.circular(20),
border: Border.all(
color: Colors.white.withOpacity(0.1),
width: 1,
),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.3),
blurRadius: 30,
offset: const Offset(0, 15),
),
],
),
child: const LoginForm(),
),
),
const SizedBox(height: 20),
],
),
),
),
),
],
),
);
} else {
// Vista desktop - columna izquierda sólida, derecha degradado
return Row(
children: [
// Lado izquierdo - Formulario (fondo sólido)
// Lado izquierdo - Formulario (fondo sólido con efectos)
Expanded(
flex: 1,
child: Container(
color:
const Color(0xFF1E293B), // Fondo sólido azul oscuro
decoration: BoxDecoration(
color: const Color(0xFF0F172A),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.1),
blurRadius: 30,
offset: const Offset(10, 0),
),
],
),
child: Stack(
children: [
// Patrón de puntos sutil
Positioned.fill(
child: CustomPaint(
painter: DotPatternPainter(),
),
),
Container(
padding: const EdgeInsets.symmetric(
horizontal: 60, vertical: 40),
child: Center(
child: SingleChildScrollView(
child: ConstrainedBox(
constraints: const BoxConstraints(maxWidth: 400),
constraints:
const BoxConstraints(maxWidth: 420),
child: SlideTransition(
position: _slideAnimation,
child: const LoginForm(),
),
),
),
),
),
// Lado derecho - Logo (con degradado)
],
),
),
),
// Lado derecho - Logo (con degradado mejorado)
Expanded(
flex: 1,
child: Container(
decoration: const BoxDecoration(
gradient: LinearGradient(
begin: Alignment.centerLeft,
end: Alignment.centerRight,
begin: Alignment.topLeft,
end: Alignment.bottomRight,
colors: [
Color(0xFF22C55E), // Verde izquierda
Color(0xFF3B82F6), // Azul centro
Color(0xFF8B5CF6), // Morado derecha
Color(0xFF1E40AF), // Azul profundo
Color(0xFF3B82F6), // Azul brillante
Color(0xFF10B981), // Verde esmeralda
Color(0xFF059669), // Verde intenso
Color(0xFF7C3AED), // Púrpura
],
stops: [0.0, 0.25, 0.5, 0.75, 1.0],
),
),
child: Stack(
children: [
// Efectos de círculos flotantes
...List.generate(
8,
(index) => _buildFloatingCircle(
index, constraints, true)),
// Contenido centrado horizontal y verticalmente
Center(
child: Container(
padding: const EdgeInsets.all(60),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisSize: MainAxisSize.min,
children: [
// Logo NetHive
Container(
width: 120,
height: 120,
// Logo NetHive con animación
FadeTransition(
opacity: _fadeAnimation,
child: Container(
width: 150,
height: 150,
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(24),
borderRadius: BorderRadius.circular(30),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.1),
color:
Colors.black.withOpacity(0.2),
blurRadius: 40,
offset: const Offset(0, 20),
),
BoxShadow(
color:
Colors.white.withOpacity(0.1),
blurRadius: 20,
offset: const Offset(0, 10),
offset: const Offset(0, -10),
),
],
),
child: Padding(
padding: const EdgeInsets.all(24),
padding: const EdgeInsets.all(30),
child: Image.asset(
'assets/images/favicon.png',
fit: BoxFit.contain,
),
),
),
const SizedBox(height: 32),
const Text(
),
const SizedBox(height: 40),
FadeTransition(
opacity: _fadeAnimation,
child: const Text(
'NetHive',
style: TextStyle(
fontSize: 48,
fontSize: 52,
fontWeight: FontWeight.bold,
color: Colors.white,
shadows: [
Shadow(
offset: Offset(0, 4),
blurRadius: 20,
color: Colors.black26,
),
],
),
textAlign: TextAlign.center,
),
),
const SizedBox(height: 8),
const Text(
const SizedBox(height: 12),
FadeTransition(
opacity: _fadeAnimation,
child: Text(
'Infrastructure Management',
style: TextStyle(
fontSize: 18,
color: Colors.white70,
fontSize: 20,
color: Colors.white.withOpacity(0.8),
fontWeight: FontWeight.w300,
letterSpacing: 1.2,
),
textAlign: TextAlign.center,
),
),
const SizedBox(height: 30),
// Línea decorativa
FadeTransition(
opacity: _fadeAnimation,
child: Container(
width: 100,
height: 2,
decoration: BoxDecoration(
gradient: const LinearGradient(
colors: [
Colors.transparent,
Colors.white,
Colors.transparent,
],
),
borderRadius: BorderRadius.circular(2),
),
),
),
],
),
),
),
],
@@ -191,4 +406,76 @@ class _LoginPageState extends State<LoginPage> {
),
);
}
Widget _buildFloatingCircle(int index, BoxConstraints constraints,
[bool isRightSide = false]) {
final random = [
{'size': 80.0, 'top': 50.0, 'left': 30.0, 'opacity': 0.1},
{'size': 120.0, 'top': 200.0, 'right': 50.0, 'opacity': 0.08},
{'size': 60.0, 'bottom': 150.0, 'left': 80.0, 'opacity': 0.12},
{'size': 100.0, 'top': 300.0, 'left': 200.0, 'opacity': 0.06},
{'size': 140.0, 'bottom': 100.0, 'right': 100.0, 'opacity': 0.09},
{'size': 70.0, 'top': 450.0, 'right': 150.0, 'opacity': 0.11},
{'size': 90.0, 'top': 100.0, 'left': 150.0, 'opacity': 0.07},
{'size': 110.0, 'bottom': 200.0, 'left': 50.0, 'opacity': 0.08},
];
if (index >= random.length) return const SizedBox();
final circle = random[index];
return AnimatedBuilder(
animation: _fadeController,
builder: (context, child) {
return Positioned(
top: circle['top'] as double?,
bottom: circle['bottom'] as double?,
left: circle['left'] as double?,
right: circle['right'] as double?,
child: Transform.scale(
scale: 0.5 + (_fadeAnimation.value * 0.5),
child: Container(
width: circle['size'] as double,
height: circle['size'] as double,
decoration: BoxDecoration(
shape: BoxShape.circle,
color: Colors.white.withOpacity(
(circle['opacity'] as double) * _fadeAnimation.value),
border: Border.all(
color: Colors.white.withOpacity(0.1 * _fadeAnimation.value),
width: 1,
),
),
),
),
);
},
);
}
}
// Custom painter para patrón de puntos
class DotPatternPainter extends CustomPainter {
@override
void paint(Canvas canvas, Size size) {
final paint = Paint()
..color = Colors.white.withOpacity(0.02)
..style = PaintingStyle.fill;
const double spacing = 30;
const double dotSize = 1.5;
for (double x = 0; x < size.width; x += spacing) {
for (double y = 0; y < size.height; y += spacing) {
canvas.drawCircle(
Offset(x, y),
dotSize,
paint,
);
}
}
}
@override
bool shouldRepaint(covariant CustomPainter oldDelegate) => false;
}

View File

@@ -20,15 +20,44 @@ class LoginForm extends StatefulWidget {
State<LoginForm> createState() => _LoginFormState();
}
class _LoginFormState extends State<LoginForm> {
class _LoginFormState extends State<LoginForm> with TickerProviderStateMixin {
final formKey = GlobalKey<FormState>();
bool passwordVisibility = false;
late AnimationController _buttonController;
late Animation<double> _buttonScale;
bool _isLoading = false;
@override
void initState() {
super.initState();
_buttonController = AnimationController(
duration: const Duration(milliseconds: 150),
vsync: this,
);
_buttonScale = Tween<double>(
begin: 1.0,
end: 0.95,
).animate(CurvedAnimation(
parent: _buttonController,
curve: Curves.easeInOut,
));
}
@override
void dispose() {
_buttonController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
final UserState userState = Provider.of<UserState>(context);
final isMobile = MediaQuery.of(context).size.width < 768;
Future<void> login() async {
setState(() => _isLoading = true);
_buttonController.forward().then((_) => _buttonController.reverse());
//Login
try {
// Check if user exists
@@ -37,6 +66,7 @@ class _LoginFormState extends State<LoginForm> {
if (userId == null) {
await ApiErrorHandler.callToast('Este Correo no está registrado');
setState(() => _isLoading = false);
return;
}
@@ -57,6 +87,7 @@ class _LoginFormState extends State<LoginForm> {
if (supabase.auth.currentUser == null) {
await ApiErrorHandler.callToast();
setState(() => _isLoading = false);
return;
}
@@ -64,6 +95,7 @@ class _LoginFormState extends State<LoginForm> {
if (currentUser == null) {
await ApiErrorHandler.callToast();
setState(() => _isLoading = false);
return;
}
/*
@@ -91,16 +123,17 @@ class _LoginFormState extends State<LoginForm> {
userState.emailController.text,
);
await ApiErrorHandler.callToast('Credenciales Invalidas');
setState(() => _isLoading = false);
return;
}
log('Error al iniciar sesion - $e');
setState(() => _isLoading = false);
}
}
return Container(
width: double.infinity,
constraints: const BoxConstraints(maxWidth: 400),
constraints: const BoxConstraints(maxWidth: 420),
child: Form(
key: formKey,
child: Column(
@@ -109,32 +142,48 @@ class _LoginFormState extends State<LoginForm> {
// Logo NetHive para formulario (solo en desktop)
MediaQuery.of(context).size.width >= 768
? Container(
margin: const EdgeInsets.only(bottom: 40),
child: Row(
margin: const EdgeInsets.only(bottom: 50),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
Container(
width: 40,
height: 40,
width: 50,
height: 50,
decoration: BoxDecoration(
color: const Color(0xFF3B82F6),
borderRadius: BorderRadius.circular(8),
gradient: const LinearGradient(
colors: [
Color(0xFF3B82F6),
Color(0xFF10B981)
],
),
borderRadius: BorderRadius.circular(12),
boxShadow: [
BoxShadow(
color: const Color(0xFF3B82F6)
.withOpacity(0.3),
blurRadius: 20,
offset: const Offset(0, 8),
),
],
),
child: Padding(
padding: const EdgeInsets.all(8),
padding: const EdgeInsets.all(10),
child: Image.asset(
'assets/images/favicon.png',
fit: BoxFit.contain,
),
),
),
const SizedBox(width: 12),
const SizedBox(width: 16),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Bienvenido a NetHive',
style: GoogleFonts.inter(
fontSize: 24,
fontSize: 28,
fontWeight: FontWeight.bold,
color: Colors.white,
),
@@ -143,13 +192,27 @@ class _LoginFormState extends State<LoginForm> {
'Plataforma de Gestión de Infraestructura',
style: GoogleFonts.inter(
fontSize: 14,
color: Colors.white70,
color: Colors.white60,
fontWeight: FontWeight.w300,
),
),
],
),
],
),
const SizedBox(height: 20),
Container(
width: 60,
height: 3,
decoration: BoxDecoration(
gradient: const LinearGradient(
colors: [Color(0xFF10B981), Color(0xFF3B82F6)],
),
borderRadius: BorderRadius.circular(2),
),
),
],
),
)
: const SizedBox(),
@@ -157,16 +220,27 @@ class _LoginFormState extends State<LoginForm> {
Text(
'CORREO ELECTRÓNICO',
style: GoogleFonts.inter(
fontSize: 12,
fontSize: 13,
fontWeight: FontWeight.w600,
color: Colors.white,
letterSpacing: 1.2,
letterSpacing: 1.5,
),
),
const SizedBox(height: 8),
const SizedBox(height: 12),
// Campo de email
TextFormField(
// Campo de email con efectos mejorados
Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.1),
blurRadius: 20,
offset: const Offset(0, 8),
),
],
),
child: TextFormField(
controller: userState.emailController,
onFieldSubmitted: (value) async {
if (!formKey.currentState!.validate()) {
@@ -185,42 +259,76 @@ class _LoginFormState extends State<LoginForm> {
style: GoogleFonts.inter(
color: Colors.white,
fontSize: 16,
fontWeight: FontWeight.w400,
),
decoration: InputDecoration(
hintText: 'admin@nethive.com',
hintStyle: GoogleFonts.inter(
color: Colors.white54,
color: isMobile
? Colors.white.withOpacity(0.6)
: Colors.white.withOpacity(0.4),
fontSize: 16,
),
filled: true,
fillColor: Colors.white.withOpacity(0.1),
fillColor: isMobile
? Colors.white.withOpacity(0.15) // Más opaco en móvil
: Colors.white.withOpacity(0.08),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(8),
borderRadius: BorderRadius.circular(12),
borderSide: BorderSide.none,
),
focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(12),
borderSide: const BorderSide(
color: Color(0xFF10B981),
width: 2,
),
),
contentPadding: const EdgeInsets.symmetric(
horizontal: 16,
vertical: 16,
horizontal: 20,
vertical: 18,
),
prefixIcon: Container(
padding: const EdgeInsets.all(12),
child: Icon(
Icons.email_outlined,
color: isMobile
? Colors.white.withOpacity(0.8)
: Colors.white60,
size: 20,
),
),
),
),
),
const SizedBox(height: 20),
const SizedBox(height: 24),
// Título contraseña
Text(
'CONTRASEÑA',
style: GoogleFonts.inter(
fontSize: 12,
fontSize: 13,
fontWeight: FontWeight.w600,
color: Colors.white,
letterSpacing: 1.2,
letterSpacing: 1.5,
),
),
const SizedBox(height: 8),
const SizedBox(height: 12),
// Campo de contraseña
TextFormField(
// Campo de contraseña con efectos mejorados
Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.1),
blurRadius: 20,
offset: const Offset(0, 8),
),
],
),
child: TextFormField(
controller: userState.passwordController,
obscureText: !passwordVisibility,
onFieldSubmitted: (value) async {
@@ -238,29 +346,54 @@ class _LoginFormState extends State<LoginForm> {
style: GoogleFonts.inter(
color: Colors.white,
fontSize: 16,
fontWeight: FontWeight.w400,
),
decoration: InputDecoration(
hintText: '••••••',
hintText: '••••••••',
hintStyle: GoogleFonts.inter(
color: Colors.white54,
color: isMobile
? Colors.white.withOpacity(0.6)
: Colors.white.withOpacity(0.4),
fontSize: 16,
),
filled: true,
fillColor: Colors.white.withOpacity(0.1),
fillColor: isMobile
? Colors.white.withOpacity(0.15) // Más opaco en móvil
: Colors.white.withOpacity(0.08),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(8),
borderRadius: BorderRadius.circular(12),
borderSide: BorderSide.none,
),
focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(12),
borderSide: const BorderSide(
color: Color(0xFF10B981),
width: 2,
),
),
contentPadding: const EdgeInsets.symmetric(
horizontal: 16,
vertical: 16,
horizontal: 20,
vertical: 18,
),
prefixIcon: Container(
padding: const EdgeInsets.all(12),
child: Icon(
Icons.lock_outline,
color: isMobile
? Colors.white.withOpacity(0.8)
: Colors.white60,
size: 20,
),
),
suffixIcon: IconButton(
icon: Icon(
passwordVisibility
? Icons.visibility_outlined
: Icons.visibility_off_outlined,
color: Colors.white54,
color: isMobile
? Colors.white.withOpacity(0.8)
: Colors.white60,
size: 20,
),
onPressed: () => setState(
() => passwordVisibility = !passwordVisibility,
@@ -268,31 +401,62 @@ class _LoginFormState extends State<LoginForm> {
),
),
),
),
const SizedBox(height: 32),
const SizedBox(height: 40),
// Botón de iniciar sesión
SizedBox(
// Botón de iniciar sesión mejorado
ScaleTransition(
scale: _buttonScale,
child: Container(
width: double.infinity,
height: 50,
height: 56,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12),
boxShadow: [
BoxShadow(
color: isMobile
? const Color(0xFF0369A1)
.withOpacity(0.6) // Azul en móvil
: const Color(0xFF10B981)
.withOpacity(0.4), // Verde en desktop
blurRadius: 20,
offset: const Offset(0, 8),
),
],
),
child: ElevatedButton(
onPressed: () async {
onPressed: _isLoading
? null
: () async {
if (!formKey.currentState!.validate()) {
return;
}
await login();
},
style: ElevatedButton.styleFrom(
backgroundColor: const Color(0xFF22C55E),
backgroundColor: isMobile
? const Color(
0xFF0369A1) // Azul más contrastante en móvil
: const Color(0xFF10B981), // Verde en desktop
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8),
borderRadius: BorderRadius.circular(12),
),
elevation: 0,
),
child: Text(
child: _isLoading
? const SizedBox(
width: 24,
height: 24,
child: CircularProgressIndicator(
color: Colors.white,
strokeWidth: 2,
),
)
: Text(
'INICIAR SESIÓN',
style: GoogleFonts.inter(
fontSize: 14,
fontSize: 15,
fontWeight: FontWeight.w600,
color: Colors.white,
letterSpacing: 1.2,
@@ -300,70 +464,117 @@ class _LoginFormState extends State<LoginForm> {
),
),
),
),
const SizedBox(height: 12),
const SizedBox(height: 16),
// Enlace "Conexión insegura"
// Enlace "Conexión segura" mejorado
Center(
child: TextButton(
onPressed: () {},
child: Text(
'Conexión insegura',
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
const Icon(
Icons.lock_outline,
color: Color(0xFF10B981),
size: 16,
),
const SizedBox(width: 8),
Text(
'Conexión segura',
style: GoogleFonts.inter(
color: const Color(0xFFEF4444),
color: const Color(0xFF10B981),
fontSize: 13,
decoration: TextDecoration.underline,
decorationColor: const Color(0xFFEF4444),
fontWeight: FontWeight.w500,
),
),
],
),
),
),
const SizedBox(height: 40),
const SizedBox(height: 50),
// Características principales
// Características principales con diseño mejorado
Container(
padding: const EdgeInsets.all(24),
decoration: BoxDecoration(
color: Colors.white.withOpacity(0.03),
borderRadius: BorderRadius.circular(16),
border: Border.all(
color: Colors.white.withOpacity(0.1),
width: 1,
),
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
Container(
width: 6,
height: 6,
decoration: const BoxDecoration(
color: Color(0xFF10B981),
shape: BoxShape.circle,
),
),
const SizedBox(width: 12),
Text(
'CARACTERÍSTICAS PRINCIPALES',
style: GoogleFonts.inter(
fontSize: 12,
fontWeight: FontWeight.w600,
color: Colors.white,
letterSpacing: 1.2,
letterSpacing: 1.5,
),
),
const SizedBox(height: 16),
// Lista de características
],
),
const SizedBox(height: 20),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
_buildFeatureItem('Gestión completa de infraestructura'),
_buildFeatureItem('Monitoreo en tiempo real'),
_buildFeatureItem('Reportes avanzados'),
_buildFeatureItem('Dashboard intuitivo'),
_buildFeatureItem('Gestión completa de infraestructura',
Icons.dashboard_outlined),
_buildFeatureItem(
'Monitoreo en tiempo real', Icons.analytics_outlined),
_buildFeatureItem(
'Reportes avanzados', Icons.assessment_outlined),
_buildFeatureItem(
'Dashboard intuitivo', Icons.widgets_outlined),
],
),
],
),
),
],
),
),
);
}
Widget _buildFeatureItem(String text) {
Widget _buildFeatureItem(String text, IconData icon) {
return Padding(
padding: const EdgeInsets.only(bottom: 8),
padding: const EdgeInsets.only(bottom: 16),
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
margin: const EdgeInsets.only(top: 6, right: 12),
width: 6,
height: 6,
decoration: const BoxDecoration(
color: Color(0xFF22C55E),
shape: BoxShape.circle,
width: 32,
height: 32,
decoration: BoxDecoration(
color: const Color(0xFF10B981).withOpacity(0.1),
borderRadius: BorderRadius.circular(8),
),
child: Icon(
icon,
color: const Color(0xFF10B981),
size: 16,
),
),
const SizedBox(width: 12),
Expanded(
child: Text(
text,
@@ -371,6 +582,7 @@ class _LoginFormState extends State<LoginForm> {
color: Colors.white70,
fontSize: 14,
height: 1.5,
fontWeight: FontWeight.w400,
),
),
),