Co-authored-by: MENDOZA BALLARDO GAEL RICARDO <gael-meb123@users.noreply.github.com>

Co-authored-by: Azareth-Tr <Azareth-Tr@users.noreply.github.com>
Co-authored-by: eddgranados12 <eddgranados12@users.noreply.github.com>

implementacion de login, vistas, correcion de errores en vista registro, domicilios
This commit is contained in:
shinra32
2026-05-22 23:07:24 -06:00
parent b4ee3e7b49
commit c91b6e2091
52 changed files with 3940 additions and 4368 deletions

View File

@@ -0,0 +1,91 @@
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:recolecta_app/features/separation_guide/models/separation_guide_model.dart'
as guide;
import 'package:recolecta_app/features/separation_guide/providers/separation_guide_provider.dart';
class CategoryDetailScreen extends ConsumerWidget {
final String categoryId;
const CategoryDetailScreen({super.key, required this.categoryId});
@override
Widget build(BuildContext context, WidgetRef ref) {
final guideData = ref.watch(separationGuideProvider);
return Scaffold(
body: guideData.when(
data: (data) {
final category = data.categorias.firstWhere(
(c) => c.id == categoryId,
);
return CustomScrollView(
slivers: [
SliverAppBar(
title: Text(category.nombre),
backgroundColor: category.colorValue,
expandedHeight: 120,
pinned: true,
flexibleSpace: FlexibleSpaceBar(
background: Container(
color: category.colorValue,
alignment: Alignment.bottomLeft,
padding: const EdgeInsets.only(left: 16, bottom: 24),
child: Text(
category.descripcion,
style: Theme.of(
context,
).textTheme.titleMedium?.copyWith(color: Colors.white),
),
),
),
),
SliverList(
delegate: SliverChildBuilderDelegate((context, index) {
final example = category.ejemplos[index];
return ListTile(
leading: Icon(
example.acepta ? Icons.check_circle : Icons.cancel,
color: example.acepta ? Colors.green : Colors.red,
),
title: Text(example.nombre),
subtitle: example.razon != null
? Chip(
label: Text(example.razon!),
backgroundColor: Colors.red.withOpacity(0.1),
)
: null,
);
}, childCount: category.ejemplos.length),
),
],
);
},
loading: () => const Center(child: CircularProgressIndicator()),
error: (err, stack) => Center(child: Text('Error: $err')),
),
bottomNavigationBar: guideData.maybeWhen(
data: (data) {
final category = data.categorias.firstWhere(
(c) => c.id == categoryId,
);
return BottomAppBar(
color: category.colorValue,
child: Padding(
padding: const EdgeInsets.all(16.0),
child: Text(
category.consejo,
style: const TextStyle(
color: Colors.white,
fontWeight: FontWeight.bold,
),
textAlign: TextAlign.center,
),
),
);
},
orElse: () => null,
),
);
}
}

View File

@@ -0,0 +1,81 @@
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:go_router/go_router.dart';
import 'package:recolecta_app/features/separation_guide/providers/separation_guide_provider.dart';
import 'package:recolecta_app/features/separation_guide/models/separation_guide_model.dart'
as guide;
class SeparationGuideScreen extends ConsumerWidget {
const SeparationGuideScreen({super.key});
@override
Widget build(BuildContext context, WidgetRef ref) {
final guideData = ref.watch(separationGuideProvider);
return Scaffold(
appBar: AppBar(
title: const Text('Guía de Separación'),
bottom: PreferredSize(
preferredSize: const Size.fromHeight(20.0),
child: Text(
'Funciona sin internet',
style: Theme.of(context).textTheme.titleSmall,
),
),
),
body: guideData.when(
data: (data) => GridView.builder(
padding: const EdgeInsets.all(16.0),
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 2,
crossAxisSpacing: 16.0,
mainAxisSpacing: 16.0,
childAspectRatio: 1.2,
),
itemCount: data.categorias.length,
itemBuilder: (context, index) {
final category = data.categorias[index];
return CategoryCard(category: category);
},
),
loading: () => const Center(child: CircularProgressIndicator()),
error: (err, stack) => Center(child: Text('Error: $err')),
),
);
}
}
class CategoryCard extends StatelessWidget {
const CategoryCard({super.key, required this.category});
final guide.Category category;
@override
Widget build(BuildContext context) {
return GestureDetector(
onTap: () => context.go('/guide/${category.id}'),
child: Card(
color: category.colorValue.withOpacity(0.15),
elevation: 0,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(16),
side: BorderSide(color: category.colorValue, width: 1),
),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(category.iconData, size: 40, color: category.colorValue),
const SizedBox(height: 12),
Text(
category.nombre,
style: Theme.of(context).textTheme.titleMedium?.copyWith(
fontWeight: FontWeight.bold,
color: category.colorValue,
),
textAlign: TextAlign.center,
),
],
),
),
);
}
}