This page is under construction. The outline below sketches what it will cover.
- Builder catalog — layout (
Column,Row,Grid), display (Text,Badge,Table, charts:Bar,Line,Area,Pie), input (Input,Select,Button), and control flow (If/.elif()/.else(),ForEach,Rx). - Actions —
Button({ actionRef })invokes backend tools;actionRef()resolves mount-prefixed names at execution time so apps work when mounted under a prefix. - Component model — every builder returns
{ type, props?, children? }; trees are plain data, easy to test and snapshot. - Conditional rendering — the
Ifchaining API and how branches serialize.