draggable modifier and Updatable Preview View

I am having to do some custom drag and drop with the draggable modifier and I am using a Preview, but I can't get the preview to update when there are more items being dragged. The original Preview remains static.

Is this not possible to update a View that is being dragged?

For instance

 .draggable(dragHelper.begin(source: pd, section.firstIndex(of: pd))) {
              /* this drag Preview can't be updated while it is dragged around */
              DragPreview()                      
  }

Hi @geekydevjoe , The preview is generated once when the drag begins, and it remains static during the drag. The draggable modifier currently does not support dynamic updates to the preview while dragging state.

If you would like for Apple to consider adding support for such features, please submit your suggestion request via Feedback Assistant (https://feedbackassistant.apple.com). For more information on Feedback Assistant, please visit https://developer.apple.com/bug-reporting.

draggable modifier and Updatable Preview View
 
 
Q