In my flutter app, the reorderable listview is preventing the child gesture detectors from triggering ontap. some unimportant code has been removed for privacy reasons. How can I make this work? Thanks - Joseph
Container(
height: 600,
child: ReorderableListView(
onReorder: (oldIndex, newIndex) async {
...
},
children: [
for (var line in orderedLines) ...[
GestureDetector(
key: ValueKey(line.name),
onTap: () {
print("yay");
},