Can't make onMove to work on iOS, it is just not triggered. Is this an iOS bug or I'm missing something? On the iPad is working like a charm.
Thanks!
Code Block swift List{ ForEach(names, id: \.self) {name in Text(name) }.onMove(perform: { indices, newOffset in names.move(fromOffsets: indices, toOffset: newOffset) }) }
Thanks!