Open
Description
example repo: https://github.com/jalbatross/ns-angular-listview-handlers-error
Tell us about the problem
When performing a reorder operation on Android and dropping the item in the same place, the listeners for itemHold, reorderStarting, reorderStarted, and reoredered are called in that order. However, on iOS only the listeners for reorderStarting and reorderStarted are called.
Which platform(s) does your issue occur on?
iOS
Please provide the following version numbers that your issue occurs with:
- Progress NativeScript UI plugin version: 7.1.0
- CLI: 6.2.0-2019-09-04-074603-13841
- Cross-platform modules: 6.0.0
- Runtime(s):
"tns-android": { "version": "6.1.2" }, "tns-ios": { "version": "6.1.0" }
Please tell us how to recreate the issue in as much detail as possible.
- Start the application
- Go to "Item Reorder"
- Tap and hold any item and then let go of it in the same place.
- In the console logs, you will see that on Android, all listeners are called (itemHold->reorderStarting->reorderStarted->reordered). On iOS, only reorderStarting and reorderStarted are called.
Is there code involved? If so, please share the minimal amount of code needed to recreate the problem.
Code included in repo