How to integrate Angular's material drag and drop with virtual scrolling?
问题 I'm trying to integrate Angular material's virtual scrolling with drag and drop, but for some reason when i'm trying to implement this it reverts the items and when i'm trying to drag and drop an element it doesn't work. Here is a summary of the code <cdk-virtual-scroll-viewport cdkDropList itemSize="50" class="example-viewport"> <div cdkDrag *cdkVirtualFor="let item of items" class="example-item">{{item}}</div> </cdk-virtual-scroll-viewport> As you can see, I didn't do anything special,