vizdom_select 2.0.2 copy "vizdom_select: ^2.0.2" to clipboard
vizdom_select: ^2.0.2 copied to clipboard

Incremental DOM library to build beautiful graphs and plots.

Select #

Incremental DOM library to build beautiful graphs and plots.

Usage #

Selecting #

void main() {
  select('#root')
    ..select('.header', doo: (header) {
      final title = header.select('.title');
      DivElement node = title.element;
      node.text = "Vizdom";
      final subTitle = header.select('.sub-title');
      node = subTitle.element;
      node.text = "how-to";
    })
    ..select('.content', doo: (content) {
      final description = content.select('.description');
      DivElement node = description.element;
      node.text = "Use select to select elements.";
      final moreDescription = content.select('.more-description');
      node = moreDescription.element;
      node.text = "Use bind to bind data to elements.";
    });
}

Binding data #

// TODO
0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

Incremental DOM library to build beautiful graphs and plots.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on vizdom_select