<!--
{
  "availability" : [
    "iOS: 13.4.0 - 27.0.0",
    "iPadOS: 13.4.0 - 27.0.0",
    "macCatalyst: 13.4.0 - 27.0.0",
    "macOS: 10.15.0 - 27.0.0",
    "visionOS: 1.0.0 - 27.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "SwiftUI",
  "identifier" : "/documentation/SwiftUI/View/onDrop(of:delegate:)-2vr9o",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "SwiftUI"
    ],
    "preciseIdentifier" : "s:7SwiftUI4ViewPAAE6onDrop2of8delegateQrSaySSG_AA0E8Delegate_ptF"
  },
  "title" : "onDrop(of:delegate:)"
}
-->

# onDrop(of:delegate:)

Defines the destination for a drag and drop operation with the same size
and position as this view, with behavior controlled by the given
delegate.

```
nonisolated func onDrop(of supportedTypes: [String], delegate: any DropDelegate) -> some View
```

## Parameters

`supportedTypes`

The uniform type identifiers that describe the
types of content this view can accept through drag and drop.
If the drag and drop operation doesn’t contain any of the supported
types, then this drop destination doesn’t activate and `isTargeted`
doesn’t update.

`delegate`

A type that conforms to the `DropDelegate` protocol. You
have comprehensive control over drop behavior when you use a
delegate.

## Return Value

A view that provides a drop destination for a drag
operation of the specified types.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)