Element representing a horizontal or vertical UI splitter with two child containers, one for each side.
Containers:
first
- The first container.second
- The second container.
Properties:
Name | Type | Description |
---|---|---|
flip |
bool | (default: |
orientation |
string | (default: |
splitRatio |
number | (default: |
styleOfGutter |
template | The gutter style template. |
Example
SplitBox {
splitRatio: 0.3
orientation: "vertical"
into first Placeholder { text: "Left Side" }
into second Placeholder { text: "Right Side" }
}