widget · ui.widget
row-group
Non-nested horizontal widget group with bounded structural entries.
ui.begin_row_group() ... ui.end_row_group()
- Stable ID
ui.widget.row-group- Owner
- app.ScriptUiWidget
- Authority
- presentation
- Timing
- composition
- Availability
- Phase 19Q9A
- Side effects
- Records detached presentation intent.
- Determinism
- Emission order.
- Introduced
- 1.19.0
Usage
Compose this non-nested structural widget only inside a balanced ui.begin_panel and ui.end_panel block. Widgets between its boundaries render horizontally in emission order.
Parameters
- None
Returns
A stable widget contract consumed by the interface composition host.
Cost
Each group boundary counts against the bounded widget budget.
Fields
This symbol has no fields.
Errors
- None
Examples
ui.begin_row_group()
ui.text("Project", "Workshop")
ui.end_row_group()
API history
- 1.19.0: Added horizontal widget grouping.