Viewbuilder

Examples

Cross-platform user interface framework for Rust.

This crate provides an HTML-like render API for the backend of a UI. It's built for use as a backend for concoct, but you can bring your own state management tools or build your own framework using this as a backend.

Features

```rust use viewbuilder::Tree;

fn main() { let mut tree = Tree::default(); let text = tree.insert("Hello World!");

viewbuilder::run(tree, text)

} ```