Helper library to simplify Native HTML5 Drag and Drop in Dart.
- Make any HTML Element
Draggable
. - Create
Dropzone
s and connect them withDraggable
s. - Sortable (similar to jQuery UI Sortable).
- Uses fast native HTML5 Drag and Drop of the browser.
- Same functionality and API for IE9+, Firefox, Chrome. (Safari and Opera have not been tested yet, let me know if it works).
See HTML5 Drag and Drop in action (with code examples).
All examples are also available in the example
directory on GitHub.
Add the folowing to your pubspec.yaml and run pub install
dependencies:
html5_dnd: any
To make HTML5 Drag and Drop work in Internet Explorer include the following
JavaScript file inside the <head>
of your application's HTML like so:
<script type="text/javascript" src="packages/html5_dnd/dnd.polyfill.js"></script>
Import the html5_dnd
library in your Dart code. If your using the Sortable
functionality, also
add html5_sortable
.
import 'package:html5_dnd/html5_dnd.dart';
import 'package:html5_dnd/html5_sortable.dart';
// ...
See the demo page above or the example
directory to see how to use it. There
are also plenty of Dart Doc comments in the code for some additional details.
I'd like to thank the people who kindly helped me with their answers or put some tutorial or code examples online. They've already contributed to this project.
If you'd like to contribute, you're welcome to file issues or fork my repository on GitHub.
The MIT License (MIT)