dart-dnd icon indicating copy to clipboard operation
dart-dnd copied to clipboard

Drag and Drop for Dart web apps with mouse and touch support.

Results 5 dart-dnd issues
Sort by recently updated
recently updated
newest added

In an AngularDart app with a scrollable div, the positioning of the drag avatar is off when dragging inside the scrolled div. The following subclass of OriginalAvatarHandler fixed it for...

Hi! When filling a whole page with a list of list tiles with drag handles, when touching the non-handle part, the page is not able to scroll, whereas when touching...

Initially I have a table of 4 rows, and I initialized Draggable once. ``` Draggable(tableElement, avatarHandler: AvatarHandler.clone()); Dropzone dropzone = Dropzone(stationListElement); dropzone.onDrop.listen((DropzoneEvent event) { _reorder(event.draggableElement, event.dropzoneElement); }); ``` Later the...

Let me say your lib is great and easy to use. However, it is lacking one feature (and so is the native dart) that would ease development for many. That...

Hi, I've ported your great lib to `package:html5` and published to [pub](https://pub.dartlang.org/packages/dnd_html5). Just to let you know.