builderx-macros 0.1.0

A concise builder-pattern UI DSL for Rust
Documentation

Procedural macro entry points for the builderx DSL. The bx! macro transforms a nested, JSX-ish syntax into builder calls using an adapter that knows how to attach children for a concrete toolkit.

Examples

Using the facade crate:

use builderx::bx;
let _ = bx! { div[flex]{ "hello" } };