Corrección de errores
Build & Deploy Farolero / Análisis de código (push) Successful in 52s
Build & Deploy Farolero / Build APK + AAB release (push) Successful in 2m17s

This commit is contained in:
2026-05-11 19:14:49 +02:00
parent df2659ab9d
commit 928cbd8a1d
3 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -42,7 +42,8 @@ class PantallaHistorial extends StatelessWidget {
child: ListView.separated(
padding: const EdgeInsets.fromLTRB(16, 12, 16, 24),
itemCount: partidas.length + 1,
separatorBuilder: (_, __) => const SizedBox(height: 12),
separatorBuilder: (context, index) =>
const SizedBox(height: 12),
itemBuilder: (context, index) {
if (index == 0) {
return const ArteGameplayFarolero.historial(height: 132);