Fix Flutter SDK update

This commit is contained in:
ericz
2026-05-21 00:11:54 +02:00
parent 8682e6ea67
commit bac82dc9e8
+1 -1
View File
@@ -273,7 +273,7 @@ class _ChannelsScreenState extends State<ChannelsScreen>
),
buildDefaultDragHandles: false,
itemCount: filteredChannels.length,
onReorder: (oldIndex, newIndex) {
onReorderItem: (oldIndex, newIndex) {
if (newIndex > oldIndex) newIndex -= 1;
final reordered = List<Channel>.from(
filteredChannels,