html5_dnd 0.3.0 copy "html5_dnd: ^0.3.0" to clipboard
html5_dnd: ^0.3.0 copied to clipboard

outdatedDart 1 only

HTML5 Drag and Drop

HTML5 Drag and Drop for Dart #

Helper library to simplify HTML5 Drag and Drop in Dart.

Features #

  • Make any HTML Element draggable.
  • Create dropzones and connect them with draggables.
  • Rearrange elements with sortable (similar to jQuery UI Sortable).
  • Same functionality and API for IE9+, Firefox, Chrome and Safari.
  • Uses fast native HTML5 Drag and Drop of the browser whenever possible.
  • For browsers that do not support some features, the behaviour is emulated. This is the case for IE9 and partly for IE10 (when custom drag images are used).

Demo #

See HTML5 Drag and Drop in action (with code examples).

All examples are also available in the example directory on GitHub.

Installation #

1. Add Dependency #

Add the folowing to your pubspec.yaml and run pub install

	dependencies:
	  html5_dnd: any

2. Import #

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';

// ...

3. Use it #

See the demo page above or the example directory to see how to use it. There are also plenty of comments in the code if you're interested in some finer details.

Thanks and Contributions #

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 report issues or fork my repository on GitHub.

License #

The MIT License (MIT)