I have a List
and want to make list items respond to long press gesture. But after adding the gesture to list item, I can not scroll the list from the text area.
List {
ForEach(items) { item in
Text(item.name)
.onLongPressGesture { print("long press") }
}
}