Skip to main content

Overview

Options

<DragDropContentView /> supports all <View /> Props. Other Props:

OptioniOSAndroidWebDescription
onDropA callback that returns an array of assets. Refer to Asset Object
onDragStartA callback that is called when the user starts dragging an asserts.
onDragEndA callback that is called when the users finger is released (successfully or not).
onEnterA callback that is called when any source is dragged into the view's boundary (hovering begins).
onExitA callback that is called when any source is dragged out of the view's boundary (hovering ends).
onDropListeningStartA callback that is called for all <DragDropContentView /> instances within the view port once any drag begins. Useful if you want to customize all drop areas as soon as any asset begins dragging. Refer to Example
includeBase64If true, creates a base64 string of the media (Avoid using on large media files due to performance). It is always true on Web since it is the only available source.
draggableSourcesSources that can be dragged around the screen. Refer to Draggable Source.

Asset Object

keyiOSAndroidWebDescription
base64The base64 string of the media (Optional on Android and iOS, but Required on Web)
uriThe file uri in app-specific cache storage.
pathThe original file path.
widthAsset dimensions
heightAsset dimensions
typeThe file mime type
fileNameThe file name
textIf the dropped file is text, this key contains its value

Draggable Source

keyiOSAndroidWebDescription
typeimage, video, text or file
valueFor image, video or file, pass file uri or their base64 string. And for text pass the text value