drag-and-drop
drag-and-drop copied to clipboard
Simple drag and drop for SwiftUI
Drag and Drop
Simple drag and drop for SwiftUI

Installation
You can install via the Swift Package Manager:
File > Swift Packages > Add Package Dependency..., then paste in https://github.com/carson-katri/drag-and-drop
Usage
First, add the DragDropManager environment object:
ContentView().environmentObject(DragDropManager())
Example:
VStack {
Text("Drop Here")
.droppable()
Text("Drag Me")
.draggable(data: myDropData)
}
You can also get the data from the drag view like so:
VStack {
DropView { data in
Text(data as? String ?? "Drop Here")
}
Text("Drag Me")
.draggable(data: "Hello World")
}
You can also make the DragView directly:
DragView(myDropData) {
Text("Drag Me")
}
Another capability is resizing the DragView to fit in the DropView automatically:
Text("Drag Me")
.draggable(data: "Hello World", resize: true)