vdom 0.4.0+1 copy "vdom: ^0.4.0+1" to clipboard
vdom: ^0.4.0+1 copied to clipboard

outdated

Virtual DOM diff/patch.

VDom - Virtual DOM diff/patch #

Virtual DOM diff/patch implementation inspired by ReactJS Reconciliation.

diff/patch API is deprecated in favour of new sync API #

Usage example #

import 'package:vdom/vdom.dart' as v;

main() {
  final a = new v.Element('unique_key', 'div');
  final aHtmlElement = a.render();

  final b = new v.Element('unique_key', 'div', [new v.Text('text_key', 'Text Content')]);

  a.sync(b);
}
0
likes
0
points
45
downloads

Publisher

unverified uploader

Weekly Downloads

Virtual DOM diff/patch.

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on vdom