fix(ci): use compatible reorder callback
Build & Deploy Pluriwave / Análisis de código (push) Successful in 9s
Build & Deploy Pluriwave / Build APK + AAB release (push) Successful in 2m13s

This commit is contained in:
2026-05-20 20:18:43 +02:00
parent 9c51454d57
commit 4bcd86f59c
+2 -1
View File
@@ -43,7 +43,8 @@ class PantallaFavoritos extends StatelessWidget {
return ReorderableListView.builder(
padding: const EdgeInsets.all(12),
onReorderItem: (oldIndex, newIndex) async {
onReorder: (oldIndex, newIndex) async {
if (newIndex > oldIndex) newIndex--;
final emisora = favoritos[oldIndex];
await estado.favoritos.reordenar(emisora.uuid, newIndex);
await estado.cargarFavoritos();