mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
22 lines
321 B
Markdown
22 lines
321 B
Markdown
|
|
## Name
|
||
|
|
|
||
|
|
GML Horizontal Box Layout
|
||
|
|
|
||
|
|
## Description
|
||
|
|
|
||
|
|
Defines a horizontal GUI box layout. This is a layout object that lays out widgets side-by-side horizontally.
|
||
|
|
|
||
|
|
## Examples
|
||
|
|
|
||
|
|
```gml
|
||
|
|
@GUI::Widget {
|
||
|
|
layout: @GUI::HorizontalBoxLayout {
|
||
|
|
spacing: 2
|
||
|
|
}
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
## See also
|
||
|
|
|
||
|
|
- [Layout](help://man/5/GML-Layout)
|